summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/resolve-assoc-suggestions.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/resolve/resolve-assoc-suggestions.stderr')
-rw-r--r--tests/ui/resolve/resolve-assoc-suggestions.stderr21
1 files changed, 18 insertions, 3 deletions
diff --git a/tests/ui/resolve/resolve-assoc-suggestions.stderr b/tests/ui/resolve/resolve-assoc-suggestions.stderr
index 8def9aa20..3d9d4ffaa 100644
--- a/tests/ui/resolve/resolve-assoc-suggestions.stderr
+++ b/tests/ui/resolve/resolve-assoc-suggestions.stderr
@@ -14,13 +14,23 @@ error[E0425]: cannot find value `field` in this scope
--> $DIR/resolve-assoc-suggestions.rs:20:9
|
LL | field;
- | ^^^^^ help: you might have meant to use the available field: `self.field`
+ | ^^^^^
+ |
+help: you might have meant to use the available field
+ |
+LL | self.field;
+ | +++++
error[E0412]: cannot find type `Type` in this scope
--> $DIR/resolve-assoc-suggestions.rs:23:16
|
LL | let _: Type;
- | ^^^^ help: you might have meant to use the associated type: `Self::Type`
+ | ^^^^
+ |
+help: you might have meant to use the associated type
+ |
+LL | let _: Self::Type;
+ | ++++++
error[E0531]: cannot find tuple struct or tuple variant `Type` in this scope
--> $DIR/resolve-assoc-suggestions.rs:25:13
@@ -50,7 +60,12 @@ error[E0425]: cannot find value `method` in this scope
--> $DIR/resolve-assoc-suggestions.rs:34:9
|
LL | method;
- | ^^^^^^ help: you might have meant to refer to the method: `self.method`
+ | ^^^^^^
+ |
+help: you might have meant to refer to the method
+ |
+LL | self.method;
+ | +++++
error: aborting due to 9 previous errors