]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-57362-2.stderr
keep predicate order and tweak output
[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 |     let x = <fn (&())>::make_g();
5    |                         ^^^^^^ function or associated item not found in `for<'r> fn(&'r ())`
6    |
7    = help: items from traits can only be used if the trait is implemented and in scope
8 note: `X` defines an item `make_g`, perhaps you need to implement it
9   --> $DIR/issue-57362-2.rs:8:1
10    |
11 LL | trait X {
12    | ^^^^^^^
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0599`.