]> 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 03f9d990dbb23878063d8e5cc461e7effab465bf..1c9a6847ceb4f5c96f64bfdf7f19393f965e82e3 100644 (file)
@@ -1,15 +1,16 @@
-error[E0599]: no method named `closure` found for type `Obj<[closure@$DIR/issue-18343.rs:6:28: 6:33]>` in the current scope
+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: to call the function stored in `closure`, surround the field access with parentheses
    |
 LL |     (o.closure)();
-   |     ^         ^
+   |     +         +
 
 error: aborting due to previous error