]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-18446.stderr
3422add9dd96b701bbae7fee4052f38b96500f89
[rust.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();
5    |     --^^^--
6    |     | |
7    |     | multiple `foo` found
8    |     help: disambiguate the method call for candidate #2: `T::foo(&x)`
9    |
10 note: candidate #1 is defined in an impl for the type `dyn T`
11   --> $DIR/issue-18446.rs:9:5
12    |
13 LL |     fn foo(&self) {}
14    |     ^^^^^^^^^^^^^
15 note: candidate #2 is defined in the trait `T`
16   --> $DIR/issue-18446.rs:5:5
17    |
18 LL |     fn foo(&self);
19    |     ^^^^^^^^^^^^^^
20
21 error: aborting due to previous error
22
23 For more information about this error, try `rustc --explain E0034`.