]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/impl.stderr
Auto merge of #68717 - petrochenkov:stabexpat, r=varkor
[rust.git] / tests / ui / impl.stderr
index 95e627cd50905042e0cb1858f7ed119ede93a4a3..585d32845d290af4f8e66a3b1fd9a41b13332f5a 100644 (file)
@@ -1,34 +1,34 @@
 error: Multiple implementations of this structure
   --> $DIR/impl.rs:10: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
    |
- | / impl MyStruct {
- | |     fn first() {}
- | | }
+LL | / impl MyStruct {
+LL | |     fn first() {}
+LL | | }
    | |_^
 
 error: Multiple implementations of this structure
   --> $DIR/impl.rs:24: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
    |
- | / impl MyStruct {
- | |     fn first() {}
- | | }
+LL | / impl MyStruct {
+LL | |     fn first() {}
+LL | | }
    | |_^
 
 error: aborting due to 2 previous errors