]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-18446.stderr
New upstream version 1.33.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-18446.stderr
1 error[E0034]: multiple applicable items in scope
2 --> $DIR/issue-18446.rs:18:7
3 |
4 LL | x.foo(); //~ ERROR multiple applicable items in scope [E0034]
5 | ^^^ multiple `foo` found
6 |
7 note: candidate #1 is defined in an impl for the type `dyn T`
8 --> $DIR/issue-18446.rs:9:5
9 |
10 LL | fn foo(&self) {}
11 | ^^^^^^^^^^^^^
12 note: candidate #2 is defined in the trait `T`
13 --> $DIR/issue-18446.rs:5:5
14 |
15 LL | fn foo(&self);
16 | ^^^^^^^^^^^^^^
17 = help: to disambiguate the method call, write `T::foo(&x)` instead
18
19 error: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0034`.