]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/impl.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / impl.stderr
index 13d4a76558d904394c90b901cda9f7c219cb134a..8bddd400f705468d33aeb92ae9111f9c1f202528 100644 (file)
@@ -1,34 +1,34 @@
 error: Multiple implementations of this structure
-  --> $DIR/impl.rs:12:1
+  --> $DIR/impl.rs:19: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:15: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:33: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:15:1
    |
- | / impl MyStruct {
- | |     fn first() {}
-10 | | }
+LL | / impl MyStruct {
+LL | |     fn first() {}
+LL | | }
    | |_^
 
 error: aborting due to 2 previous errors