]> 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 95e627cd50905042e0cb1858f7ed119ede93a4a3..8bddd400f705468d33aeb92ae9111f9c1f202528 100644 (file)
@@ -1,34 +1,34 @@
 error: Multiple implementations of this structure
-  --> $DIR/impl.rs:10:1
+  --> $DIR/impl.rs:19:1
    |
-10 | / impl MyStruct {
-11 | |     fn second() {}
-12 | | }
+LL | / impl MyStruct {
+LL | |     fn second() {}
+LL | | }
    | |_^
    |
-   = note: `-D multiple-inherent-impl` implied by `-D warnings`
+   = note: `-D clippy::multiple-inherent-impl` implied by `-D warnings`
 note: First implementation here
-  --> $DIR/impl.rs:6:1
+  --> $DIR/impl.rs:15:1
    |
- | / impl MyStruct {
- | |     fn first() {}
- | | }
+LL | / impl MyStruct {
+LL | |     fn first() {}
+LL | | }
    | |_^
 
 error: Multiple implementations of this structure
-  --> $DIR/impl.rs:24:5
+  --> $DIR/impl.rs:33:5
    |
-24 | /     impl super::MyStruct {
-25 | |         fn third() {}
-26 | |     }
+LL | /     impl super::MyStruct {
+LL | |         fn third() {}
+LL | |     }
    | |_____^
    |
 note: First implementation here
-  --> $DIR/impl.rs:6:1
+  --> $DIR/impl.rs:15:1
    |
- | / impl MyStruct {
- | |     fn first() {}
- | | }
+LL | / impl MyStruct {
+LL | |     fn first() {}
+LL | | }
    | |_^
 
 error: aborting due to 2 previous errors