]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/confuse-field-and-method/issue-18343.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / confuse-field-and-method / issue-18343.stderr
index b1e3105a5f920b8f812616f4ff77314e7991affa..1c9a6847ceb4f5c96f64bfdf7f19393f965e82e3 100644 (file)
@@ -1,13 +1,16 @@
-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
+error[E0599]: no method named `closure` found for struct `Obj` in the current scope
+  --> $DIR/issue-18343.rs:7:7
    |
 LL | struct Obj<F> where F: FnMut() -> u32 {
-   | ------------------------------------- method `closure` not found for this
+   | ------------- method `closure` not found for this struct
 ...
 LL |     o.closure();
    |       ^^^^^^^ field, not a method
    |
-   = help: use `(o.closure)(...)` if you meant to call the function stored in the `closure` field
+help: to call the function stored in `closure`, surround the field access with parentheses
+   |
+LL |     (o.closure)();
+   |     +         +
 
 error: aborting due to previous error