]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-65634-raw-ident-suggestion.stderr
Rollup merge of #86479 - exphp-forks:float-debug-exponential, r=yaahc
[rust.git] / src / test / ui / issues / issue-65634-raw-ident-suggestion.stderr
1 error[E0034]: multiple applicable items in scope
2   --> $DIR/issue-65634-raw-ident-suggestion.rs:21:13
3    |
4 LL |     r#fn {}.r#struct();
5    |             ^^^^^^^^ multiple `r#struct` found
6    |
7 note: candidate #1 is defined in an impl of the trait `async` for the type `fn`
8   --> $DIR/issue-65634-raw-ident-suggestion.rs:4:5
9    |
10 LL |     fn r#struct(&self) {
11    |     ^^^^^^^^^^^^^^^^^^
12 note: candidate #2 is defined in an impl of the trait `await` for the type `fn`
13   --> $DIR/issue-65634-raw-ident-suggestion.rs:10:5
14    |
15 LL |     fn r#struct(&self) {
16    |     ^^^^^^^^^^^^^^^^^^
17 help: disambiguate the associated function for candidate #1
18    |
19 LL |     async::r#struct(&r#fn {});
20    |     ~~~~~~~~~~~~~~~~~~~~~~~~~
21 help: disambiguate the associated function for candidate #2
22    |
23 LL |     await::r#struct(&r#fn {});
24    |     ~~~~~~~~~~~~~~~~~~~~~~~~~
25
26 error: aborting due to previous error
27
28 For more information about this error, try `rustc --explain E0034`.