2020-08-28 14:10:16 +00:00
|
|
|
error: multiple implementations of this structure
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/impl.rs:10:1
|
2018-05-29 00:17:55 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / impl MyStruct {
|
|
|
|
LL | | fn second() {}
|
|
|
|
LL | | }
|
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`
|
2020-08-28 14:10:16 +00:00
|
|
|
note: first implementation here
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/impl.rs:6:1
|
2018-05-29 00:17:55 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / impl MyStruct {
|
|
|
|
LL | | fn first() {}
|
|
|
|
LL | | }
|
2018-05-29 00:17:55 +00:00
|
|
|
| |_^
|
|
|
|
|
2020-08-28 14:10:16 +00:00
|
|
|
error: multiple implementations of this structure
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/impl.rs:24:5
|
2018-05-29 00:17:55 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / impl super::MyStruct {
|
|
|
|
LL | | fn third() {}
|
|
|
|
LL | | }
|
2018-05-29 00:17:55 +00:00
|
|
|
| |_____^
|
|
|
|
|
|
2020-08-28 14:10:16 +00:00
|
|
|
note: first implementation here
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/impl.rs:6:1
|
2018-05-29 00:17:55 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / impl MyStruct {
|
|
|
|
LL | | fn first() {}
|
|
|
|
LL | | }
|
2018-05-29 00:17:55 +00:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|