]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-18446.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-18446.stderr
1 error[E0034]: multiple applicable items in scope
2   --> $DIR/issue-18446.rs:28: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:19:5
9    |
10 LL |     fn foo(&self) {}
11    |     ^^^^^^^^^^^^^
12 note: candidate #2 is defined in the trait `T`
13   --> $DIR/issue-18446.rs:15: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`.