]> git.lizzy.rs Git - rust.git/blob - src/test/ui/methods/method-ambig-two-traits-from-impls2.stderr
Merge commit '3e7c6dec244539970b593824334876f8b6ed0b18' into clippyup
[rust.git] / src / test / ui / methods / method-ambig-two-traits-from-impls2.stderr
1 error[E0034]: multiple applicable items in scope
2   --> $DIR/method-ambig-two-traits-from-impls2.rs:15:9
3    |
4 LL |     AB::foo();
5    |         ^^^ multiple `foo` found
6    |
7 note: 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    |
10 LL |     fn foo() {}
11    |     ^^^^^^^^
12 note: 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    |
15 LL |     fn foo() {}
16    |     ^^^^^^^^
17 help: disambiguate the associated function for candidate #1
18    |
19 LL |     A::foo();
20    |     ^^^^^^
21 help: disambiguate the associated function for candidate #2
22    |
23 LL |     B::foo();
24    |     ^^^^^^
25
26 error: aborting due to previous error
27
28 For more information about this error, try `rustc --explain E0034`.