mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
35 lines
692 B
Text
35 lines
692 B
Text
error: Multiple implementations of this structure
|
|
--> $DIR/impl.rs:10:1
|
|
|
|
|
LL | / impl MyStruct {
|
|
LL | | fn second() {}
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
= note: `-D clippy::multiple-inherent-impl` implied by `-D warnings`
|
|
note: First implementation here
|
|
--> $DIR/impl.rs:6:1
|
|
|
|
|
LL | / impl MyStruct {
|
|
LL | | fn first() {}
|
|
LL | | }
|
|
| |_^
|
|
|
|
error: Multiple implementations of this structure
|
|
--> $DIR/impl.rs:24:5
|
|
|
|
|
LL | / impl super::MyStruct {
|
|
LL | | fn third() {}
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
note: First implementation here
|
|
--> $DIR/impl.rs:6:1
|
|
|
|
|
LL | / impl MyStruct {
|
|
LL | | fn first() {}
|
|
LL | | }
|
|
| |_^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|