rust/src/test/ui/suggestions/confuse-field-and-method/issue-18343.stderr
2017-12-14 23:26:39 +03:00

14 lines
494 B
Plaintext

error[E0599]: no method named `closure` found for type `Obj<[closure@$DIR/issue-18343.rs:16:28: 16:33]>` in the current scope
--> $DIR/issue-18343.rs:17:7
|
11 | struct Obj<F> where F: FnMut() -> u32 {
| ------------------------------------- method `closure` not found for this
...
17 | o.closure();
| ^^^^^^^ field, not a method
|
= help: use `(o.closure)(...)` if you meant to call the function stored in the `closure` field
error: aborting due to previous error