]> git.lizzy.rs Git - rust.git/blob - src/test/ui/typeck/issue-29124.stderr
Rollup merge of #100789 - compiler-errors:issue-99662, r=spastorino
[rust.git] / src / test / ui / typeck / issue-29124.stderr
1 error[E0599]: no method named `x` found for fn item `fn() -> Ret {Obj::func}` in the current scope
2   --> $DIR/issue-29124.rs:15:15
3    |
4 LL |     Obj::func.x();
5    |     --------- ^ method not found in `fn() -> Ret {Obj::func}`
6    |     |
7    |     this is a function, perhaps you wish to call it
8
9 error[E0599]: no method named `x` found for fn item `fn() -> Ret {func}` in the current scope
10   --> $DIR/issue-29124.rs:17:10
11    |
12 LL |     func.x();
13    |     ---- ^ method not found in `fn() -> Ret {func}`
14    |     |
15    |     this 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`.