]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-57362-1.stderr
Rollup merge of #62337 - Mark-Simulacrum:fix-cpu-usage-script, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-57362-1.stderr
1 error[E0599]: no method named `f` found for type `fn(&u8)` in the current scope
2   --> $DIR/issue-57362-1.rs:20:7
3    |
4 LL |     a.f();
5    |       ^
6    |
7    = note: a is a function, perhaps you wish to call it
8    = help: items from traits can only be used if the trait is implemented and in scope
9    = note: the following trait defines an item `f`, perhaps you need to implement it:
10            candidate #1: `Trait`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0599`.