rust-clippy/tests/ui/impl.stderr

36 lines
694 B
Text
Raw Normal View History

error: Multiple implementations of this structure
2018-12-10 05:27:19 +00:00
--> $DIR/impl.rs:19:1
|
2018-12-10 05:27:19 +00:00
19 | / impl MyStruct {
20 | | fn second() {}
21 | | }
| |_^
|
= note: `-D clippy::multiple-inherent-impl` implied by `-D warnings`
note: First implementation here
2018-12-10 05:27:19 +00:00
--> $DIR/impl.rs:15:1
|
2018-12-10 05:27:19 +00:00
15 | / impl MyStruct {
16 | | fn first() {}
17 | | }
| |_^
error: Multiple implementations of this structure
2018-12-10 05:27:19 +00:00
--> $DIR/impl.rs:33:5
|
2018-12-10 05:27:19 +00:00
33 | / impl super::MyStruct {
34 | | fn third() {}
35 | | }
| |_____^
|
note: First implementation here
2018-12-10 05:27:19 +00:00
--> $DIR/impl.rs:15:1
|
2018-12-10 05:27:19 +00:00
15 | / impl MyStruct {
16 | | fn first() {}
17 | | }
| |_^
error: aborting due to 2 previous errors