summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/issue-60057.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/resolve/issue-60057.stderr')
-rw-r--r--tests/ui/resolve/issue-60057.stderr12
1 files changed, 10 insertions, 2 deletions
diff --git a/tests/ui/resolve/issue-60057.stderr b/tests/ui/resolve/issue-60057.stderr
index 4d915fcd9..a2ab86443 100644
--- a/tests/ui/resolve/issue-60057.stderr
+++ b/tests/ui/resolve/issue-60057.stderr
@@ -1,14 +1,22 @@
error[E0425]: cannot find value `banana` in this scope
--> $DIR/issue-60057.rs:8:21
|
+LL | banana: u8,
+ | ---------- a field by that name exists in `Self`
+...
LL | banana: banana
- | ^^^^^^ a field by this name exists in `Self`
+ | ^^^^^^
error[E0425]: cannot find value `banana` in this scope
--> $DIR/issue-60057.rs:14:21
|
LL | banana: banana
- | ^^^^^^ help: you might have meant to use the available field: `self.banana`
+ | ^^^^^^
+ |
+help: you might have meant to use the available field
+ |
+LL | banana: self.banana
+ | +++++
error: aborting due to 2 previous errors