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
|
|
|
| |_^
|
|
|
|
|
2021-05-20 10:30:31 +00:00
|
|
|
error: multiple implementations of this structure
|
|
|
|
--> $DIR/impl.rs:44:1
|
|
|
|
|
|
|
|
|
LL | / impl WithArgs<u64> {
|
|
|
|
LL | | fn f3() {}
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: first implementation here
|
|
|
|
--> $DIR/impl.rs:41:1
|
|
|
|
|
|
|
|
|
LL | / impl WithArgs<u64> {
|
|
|
|
LL | | fn f2() {}
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
error: multiple implementations of this structure
|
|
|
|
--> $DIR/impl.rs:65:1
|
|
|
|
|
|
|
|
|
LL | impl OneAllowedImpl {} // Lint, only one of the three blocks is allowed.
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: first implementation here
|
|
|
|
--> $DIR/impl.rs:62:1
|
|
|
|
|
|
|
|
|
LL | impl OneAllowedImpl {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2018-05-29 00:17:55 +00:00
|
|
|
|