]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/resolve/resolve-assoc-suggestions.stderr
New upstream version 1.20.0+dfsg1
[rustc.git] / src / test / ui / resolve / resolve-assoc-suggestions.stderr
index c346612a68bb62a04353ef3fb401cacfc5a61a20..77aa545e2ad6b4f1611c25725d2be61451dab2ee 100644 (file)
@@ -14,13 +14,13 @@ error[E0425]: cannot find value `field` in this scope
   --> $DIR/resolve-assoc-suggestions.rs:32:9
    |
 32 |         field;
-   |         ^^^^^ did you mean `self.field`?
+   |         ^^^^^ help: try: `self.field`
 
 error[E0412]: cannot find type `Type` in this scope
   --> $DIR/resolve-assoc-suggestions.rs:36:16
    |
 36 |         let _: Type;
-   |                ^^^^ did you mean `Self::Type`?
+   |                ^^^^ help: try: `Self::Type`
 
 error[E0531]: cannot find tuple struct/variant `Type` in this scope
   --> $DIR/resolve-assoc-suggestions.rs:39:13
@@ -50,7 +50,7 @@ error[E0425]: cannot find value `method` in this scope
   --> $DIR/resolve-assoc-suggestions.rs:52:9
    |
 52 |         method;
-   |         ^^^^^^ did you mean `self.method(...)`?
+   |         ^^^^^^ help: try: `self.method`
 
-error: aborting due to previous error(s)
+error: aborting due to 9 previous errors