36 lines
694 B
Plaintext
36 lines
694 B
Plaintext
error: Multiple implementations of this structure
|
|
--> $DIR/impl.rs:19: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:15:1
|
|
|
|
|
LL | / impl MyStruct {
|
|
LL | | fn first() {}
|
|
LL | | }
|
|
| |_^
|
|
|
|
error: Multiple implementations of this structure
|
|
--> $DIR/impl.rs:33:5
|
|
|
|
|
LL | / impl super::MyStruct {
|
|
LL | | fn third() {}
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
note: First implementation here
|
|
--> $DIR/impl.rs:15:1
|
|
|
|
|
LL | / impl MyStruct {
|
|
LL | | fn first() {}
|
|
LL | | }
|
|
| |_^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|