]> git.lizzy.rs Git - rust.git/blob - tests/ui/typeck/issue-29124.stderr
Rollup merge of #106714 - Ezrashaw:remove-e0490, r=davidtwco
[rust.git] / tests / 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 error[E0599]: no method named `x` found for fn item `fn() -> Ret {func}` in the current scope
8   --> $DIR/issue-29124.rs:17:10
9    |
10 LL |     func.x();
11    |          ^ method not found in `fn() -> Ret {func}`
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0599`.