about summary refs log tree commit diff
path: root/src/test/ui/span/impl-wrong-item-for-trait.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/span/impl-wrong-item-for-trait.stderr')
-rw-r--r--src/test/ui/span/impl-wrong-item-for-trait.stderr68
1 files changed, 34 insertions, 34 deletions
diff --git a/src/test/ui/span/impl-wrong-item-for-trait.stderr b/src/test/ui/span/impl-wrong-item-for-trait.stderr
index 5812cab0d05..dfca435f2a0 100644
--- a/src/test/ui/span/impl-wrong-item-for-trait.stderr
+++ b/src/test/ui/span/impl-wrong-item-for-trait.stderr
@@ -1,86 +1,86 @@
 error[E0437]: type `bar` is not a member of trait `Foo`
-  --> $DIR/impl-wrong-item-for-trait.rs:46:5
+  --> $DIR/impl-wrong-item-for-trait.rs:52:5
    |
-46 |     type bar = u64;
+52 |     type bar = u64;
    |     ^^^^^^^^^^^^^^^ not a member of trait `Foo`
 
 error[E0323]: item `bar` is an associated const, which doesn't match its trait `Foo`
-  --> $DIR/impl-wrong-item-for-trait.rs:24:5
+  --> $DIR/impl-wrong-item-for-trait.rs:30:5
    |
 15 |     fn bar(&self);
    |     -------------- item in trait
 ...
-24 |     const bar: u64 = 1;
+30 |     const bar: u64 = 1;
    |     ^^^^^^^^^^^^^^^^^^^ does not match trait
 
 error[E0046]: not all trait items implemented, missing: `bar`
-  --> $DIR/impl-wrong-item-for-trait.rs:21:1
+  --> $DIR/impl-wrong-item-for-trait.rs:27:1
    |
 15 |       fn bar(&self);
    |       -------------- `bar` from trait
 ...
-21 | / impl Foo for FooConstForMethod {
-22 | |     //~^ ERROR E0046
-23 | |     //~| NOTE missing `bar` in implementation
-24 | |     const bar: u64 = 1;
+27 | / impl Foo for FooConstForMethod {
+28 | |     //~^ ERROR E0046
+29 | |     //~| NOTE missing `bar` in implementation
+30 | |     const bar: u64 = 1;
 ...  |
-27 | |     const MY_CONST: u32 = 1;
-28 | | }
+33 | |     const MY_CONST: u32 = 1;
+34 | | }
    | |_^ missing `bar` in implementation
 
 error[E0324]: item `MY_CONST` is an associated method, which doesn't match its trait `Foo`
-  --> $DIR/impl-wrong-item-for-trait.rs:36:5
+  --> $DIR/impl-wrong-item-for-trait.rs:42:5
    |
-16 |     const MY_CONST: u32;
+20 |     const MY_CONST: u32;
    |     -------------------- item in trait
 ...
-36 |     fn MY_CONST() {}
+42 |     fn MY_CONST() {}
    |     ^^^^^^^^^^^^^^^^ does not match trait
 
 error[E0046]: not all trait items implemented, missing: `MY_CONST`
-  --> $DIR/impl-wrong-item-for-trait.rs:32:1
+  --> $DIR/impl-wrong-item-for-trait.rs:38:1
    |
-16 |       const MY_CONST: u32;
+20 |       const MY_CONST: u32;
    |       -------------------- `MY_CONST` from trait
 ...
-32 | / impl Foo for FooMethodForConst {
-33 | |     //~^ ERROR E0046
-34 | |     //~| NOTE missing `MY_CONST` in implementation
-35 | |     fn bar(&self) {}
+38 | / impl Foo for FooMethodForConst {
+39 | |     //~^ ERROR E0046
+40 | |     //~| NOTE missing `MY_CONST` in implementation
+41 | |     fn bar(&self) {}
 ...  |
-38 | |     //~| NOTE does not match trait
-39 | | }
+44 | |     //~| NOTE does not match trait
+45 | | }
    | |_^ missing `MY_CONST` in implementation
 
 error[E0325]: item `bar` is an associated type, which doesn't match its trait `Foo`
-  --> $DIR/impl-wrong-item-for-trait.rs:46:5
+  --> $DIR/impl-wrong-item-for-trait.rs:52:5
    |
 15 |     fn bar(&self);
    |     -------------- item in trait
 ...
-46 |     type bar = u64;
+52 |     type bar = u64;
    |     ^^^^^^^^^^^^^^^ does not match trait
 
 error[E0046]: not all trait items implemented, missing: `bar`
-  --> $DIR/impl-wrong-item-for-trait.rs:43:1
+  --> $DIR/impl-wrong-item-for-trait.rs:49:1
    |
 15 |       fn bar(&self);
    |       -------------- `bar` from trait
 ...
-43 | / impl Foo for FooTypeForMethod {
-44 | |     //~^ ERROR E0046
-45 | |     //~| NOTE missing `bar` in implementation
-46 | |     type bar = u64;
+49 | / impl Foo for FooTypeForMethod {
+50 | |     //~^ ERROR E0046
+51 | |     //~| NOTE missing `bar` in implementation
+52 | |     type bar = u64;
 ...  |
-49 | |     const MY_CONST: u32 = 1;
-50 | | }
+57 | |     const MY_CONST: u32 = 1;
+58 | | }
    | |_^ missing `bar` in implementation
 
 error[E0046]: not all trait items implemented, missing: `fmt`
-  --> $DIR/impl-wrong-item-for-trait.rs:52:1
+  --> $DIR/impl-wrong-item-for-trait.rs:60:1
    |
-52 | / impl Debug for FooTypeForMethod {
-53 | | }
+60 | / impl Debug for FooTypeForMethod {
+61 | | }
    | |_^ missing `fmt` in implementation
    |
    = note: `fmt` from trait: `fn(&Self, &mut std::fmt::Formatter<'_>) -> std::result::Result<(), std::fmt::Error>`