mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
36 lines
694 B
Plaintext
36 lines
694 B
Plaintext
error: Multiple implementations of this structure
|
|
--> $DIR/impl.rs:19:1
|
|
|
|
|
19 | / impl MyStruct {
|
|
20 | | fn second() {}
|
|
21 | | }
|
|
| |_^
|
|
|
|
|
= note: `-D clippy::multiple-inherent-impl` implied by `-D warnings`
|
|
note: First implementation here
|
|
--> $DIR/impl.rs:15:1
|
|
|
|
|
15 | / impl MyStruct {
|
|
16 | | fn first() {}
|
|
17 | | }
|
|
| |_^
|
|
|
|
error: Multiple implementations of this structure
|
|
--> $DIR/impl.rs:33:5
|
|
|
|
|
33 | / impl super::MyStruct {
|
|
34 | | fn third() {}
|
|
35 | | }
|
|
| |_____^
|
|
|
|
|
note: First implementation here
|
|
--> $DIR/impl.rs:15:1
|
|
|
|
|
15 | / impl MyStruct {
|
|
16 | | fn first() {}
|
|
17 | | }
|
|
| |_^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|