]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/impl.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / impl.stderr
index 13d4a76558d904394c90b901cda9f7c219cb134a..585d32845d290af4f8e66a3b1fd9a41b13332f5a 100644 (file)
@@ -1,34 +1,34 @@
 error: Multiple implementations of this structure
-  --> $DIR/impl.rs:12:1
+  --> $DIR/impl.rs:10:1
    |
-12 | / impl MyStruct {
-13 | |     fn second() {}
-14 | | }
+LL | / impl MyStruct {
+LL | |     fn second() {}
+LL | | }
    | |_^
    |
    = note: `-D clippy::multiple-inherent-impl` implied by `-D warnings`
 note: First implementation here
-  --> $DIR/impl.rs:8:1
+  --> $DIR/impl.rs:6:1
    |
- | / impl MyStruct {
- | |     fn first() {}
-10 | | }
+LL | / impl MyStruct {
+LL | |     fn first() {}
+LL | | }
    | |_^
 
 error: Multiple implementations of this structure
-  --> $DIR/impl.rs:26:5
+  --> $DIR/impl.rs:24:5
    |
-26 | /     impl super::MyStruct {
-27 | |         fn third() {}
-28 | |     }
+LL | /     impl super::MyStruct {
+LL | |         fn third() {}
+LL | |     }
    | |_____^
    |
 note: First implementation here
-  --> $DIR/impl.rs:8:1
+  --> $DIR/impl.rs:6:1
    |
- | / impl MyStruct {
- | |     fn first() {}
-10 | | }
+LL | / impl MyStruct {
+LL | |     fn first() {}
+LL | | }
    | |_^
 
 error: aborting due to 2 previous errors