]> git.proxmox.com Git - rustc.git/blob - src/test/ui/traits/trait-alias-ambiguous.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / traits / trait-alias-ambiguous.stderr
1 error[E0034]: multiple applicable items in scope
2 --> $DIR/trait-alias-ambiguous.rs:21:7
3 |
4 LL | t.foo();
5 | ^^^ multiple `foo` found
6 |
7 note: candidate #1 is defined in an impl of the trait `A` for the type `u8`
8 --> $DIR/trait-alias-ambiguous.rs:8:9
9 |
10 LL | fn foo(&self) {}
11 | ^^^^^^^^^^^^^
12 note: candidate #2 is defined in an impl of the trait `B` for the type `u8`
13 --> $DIR/trait-alias-ambiguous.rs:11:9
14 |
15 LL | fn foo(&self) {}
16 | ^^^^^^^^^^^^^
17 help: disambiguate the associated function for candidate #1
18 |
19 LL | A::foo(&t);
20 | ^^^^^^^^^^
21 help: disambiguate the associated function for candidate #2
22 |
23 LL | B::foo(&t);
24 | ^^^^^^^^^^
25
26 error: aborting due to previous error
27
28 For more information about this error, try `rustc --explain E0034`.