]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-18446.stderr
Rollup merge of #103236 - tspiteri:redoc-int-adc-sbb, r=m-ou-se
[rust.git] / tests / 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    |       ^^^ multiple `foo` found
6    |
7 note: candidate #1 is defined in an impl for the type `(dyn T + 'a)`
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: disambiguate the associated function for candidate #2
18    |
19 LL |     T::foo(&x);
20    |     ~~~~~~~~~~
21
22 error: aborting due to previous error
23
24 For more information about this error, try `rustc --explain E0034`.