blob: 5477146a551854c2f98cd26b73db50cd349aa0a4 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
error[E0034]: multiple applicable items in scope
--> $DIR/issue-37767.rs:20:7
|
LL | a.foo() //~ ERROR multiple applicable items
| ^^^ multiple `foo` found
|
note: candidate #1 is defined in the trait `A`
--> $DIR/issue-37767.rs:12:5
|
LL | fn foo(&mut self) {}
| ^^^^^^^^^^^^^^^^^
= help: to disambiguate the method call, write `A::foo(&a)` instead
note: candidate #2 is defined in the trait `B`
--> $DIR/issue-37767.rs:16:5
|
LL | fn foo(&mut self) {}
| ^^^^^^^^^^^^^^^^^
= help: to disambiguate the method call, write `B::foo(&a)` instead
error[E0034]: multiple applicable items in scope
--> $DIR/issue-37767.rs:32:7
|
LL | a.foo() //~ ERROR multiple applicable items
| ^^^ multiple `foo` found
|
note: candidate #1 is defined in the trait `C`
--> $DIR/issue-37767.rs:24:5
|
LL | fn foo(&self) {}
| ^^^^^^^^^^^^^
= help: to disambiguate the method call, write `C::foo(&a)` instead
note: candidate #2 is defined in the trait `D`
--> $DIR/issue-37767.rs:28:5
|
LL | fn foo(&self) {}
| ^^^^^^^^^^^^^
= help: to disambiguate the method call, write `D::foo(&a)` instead
error[E0034]: multiple applicable items in scope
--> $DIR/issue-37767.rs:44:7
|
LL | a.foo() //~ ERROR multiple applicable items
| ^^^ multiple `foo` found
|
note: candidate #1 is defined in the trait `E`
--> $DIR/issue-37767.rs:36:5
|
LL | fn foo(self) {}
| ^^^^^^^^^^^^
= help: to disambiguate the method call, write `E::foo(a)` instead
note: candidate #2 is defined in the trait `F`
--> $DIR/issue-37767.rs:40:5
|
LL | fn foo(self) {}
| ^^^^^^^^^^^^
= help: to disambiguate the method call, write `F::foo(a)` instead
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0034`.
|