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