blob: 585d32845d290af4f8e66a3b1fd9a41b13332f5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
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
|