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