]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-18446.stderr
Merge commit '6f50986667debbfc67776304a8ee23fe0158613f' into libgccjit-codegen
[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 associated function for candidate #2: `T::foo(&x)`
9    |
10 note: candidate #1 is defined in an impl for the type `(dyn T + 'a)`
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`.