]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-57362-2.stderr
On single local candidate, use span label
[rust.git] / src / test / ui / issues / issue-57362-2.stderr
1 error[E0599]: no function or associated item named `make_g` found for fn pointer `for<'r> fn(&'r ())` in the current scope
2   --> $DIR/issue-57362-2.rs:22:25
3    |
4 LL | trait X {
5    | ------- this trait defines an item `make_g`
6 ...
7 LL |     let x = <fn (&())>::make_g();
8    |                         ^^^^^^ function or associated item not found in `for<'r> fn(&'r ())`
9    |
10    = help: items from traits can only be used if the trait is implemented and in scope
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0599`.