]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-29124.stderr
Rollup merge of #62337 - Mark-Simulacrum:fix-cpu-usage-script, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-29124.stderr
1 error[E0599]: no method named `x` found for type `fn() -> Ret {Obj::func}` in the current scope
2   --> $DIR/issue-29124.rs:15:15
3    |
4 LL |     Obj::func.x();
5    |               ^
6    |
7    = note: Obj::func is a function, perhaps you wish to call it
8
9 error[E0599]: no method named `x` found for type `fn() -> Ret {func}` in the current scope
10   --> $DIR/issue-29124.rs:17:10
11    |
12 LL |     func.x();
13    |          ^
14    |
15    = note: func is a function, perhaps you wish to call it
16
17 error: aborting due to 2 previous errors
18
19 For more information about this error, try `rustc --explain E0599`.