]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-29124.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[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:25: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:27: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`.