]> git.lizzy.rs Git - rust.git/blob - src/test/ui/confuse-field-and-method/issue-18343.stderr
Unify output of "variant not found" errors
[rust.git] / src / test / ui / confuse-field-and-method / issue-18343.stderr
1 error[E0599]: no method named `closure` found for struct `Obj<[closure@$DIR/issue-18343.rs:6:28: 6:33]>` in the current scope
2   --> $DIR/issue-18343.rs:7:7
3    |
4 LL | struct Obj<F> where F: FnMut() -> u32 {
5    | ------------------------------------- method `closure` not found for this
6 ...
7 LL |     o.closure();
8    |       ^^^^^^^ field, not a method
9    |
10 help: to call the function stored in `closure`, surround the field access with parentheses
11    |
12 LL |     (o.closure)();
13    |     ^         ^
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0599`.