rust/tests/ui/impl.stderr

36 lines
692 B
Plaintext
Raw Normal View History

error: Multiple implementations of this structure
--> $DIR/impl.rs:12:1
|
12 | / impl MyStruct {
13 | | fn second() {}
14 | | }
| |_^
|
= note: `-D clippy::multiple-inherent-impl` implied by `-D warnings`
note: First implementation here
--> $DIR/impl.rs:8:1
|
8 | / impl MyStruct {
9 | | fn first() {}
10 | | }
| |_^
error: Multiple implementations of this structure
--> $DIR/impl.rs:26:5
|
26 | / impl super::MyStruct {
27 | | fn third() {}
28 | | }
| |_____^
|
note: First implementation here
--> $DIR/impl.rs:8:1
|
8 | / impl MyStruct {
9 | | fn first() {}
10 | | }
| |_^
error: aborting due to 2 previous errors