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