]> git.proxmox.com Git - rustc.git/blame - tests/ui/methods/method-ambig-two-traits-from-impls2.stderr
New upstream version 1.75.0+dfsg1
[rustc.git] / tests / ui / methods / method-ambig-two-traits-from-impls2.stderr
CommitLineData
416331ca 1error[E0034]: multiple applicable items in scope
ba9703b0 2 --> $DIR/method-ambig-two-traits-from-impls2.rs:15:9
416331ca
XL
3 |
4LL | AB::foo();
ba9703b0 5 | ^^^ multiple `foo` found
416331ca
XL
6 |
7note: candidate #1 is defined in an impl of the trait `A` for the type `AB`
8 --> $DIR/method-ambig-two-traits-from-impls2.rs:7:5
9 |
10LL | fn foo() {}
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-impls2.rs:11:5
14 |
15LL | fn foo() {}
16 | ^^^^^^^^
ed00b5ec 17help: use fully-qualified syntax to disambiguate
dfeec247 18 |
c295e0f8
XL
19LL | <AB as A>::foo();
20 | ~~~~~~~~~~~
c295e0f8
XL
21LL | <AB as B>::foo();
22 | ~~~~~~~~~~~
416331ca
XL
23
24error: aborting due to previous error
25
26For more information about this error, try `rustc --explain E0034`.