]> git.proxmox.com Git - rustc.git/blame - tests/ui/resolve/issue-60057.stderr
New upstream version 1.74.1+dfsg1
[rustc.git] / tests / ui / resolve / issue-60057.stderr
CommitLineData
48663c56
XL
1error[E0425]: cannot find value `banana` in this scope
2 --> $DIR/issue-60057.rs:8:21
3 |
781aab86
FG
4LL | banana: u8,
5 | ---------- a field by that name exists in `Self`
6...
48663c56 7LL | banana: banana
781aab86 8 | ^^^^^^
48663c56
XL
9
10error[E0425]: cannot find value `banana` in this scope
11 --> $DIR/issue-60057.rs:14:21
12 |
13LL | banana: banana
781aab86
FG
14 | ^^^^^^
15 |
16help: you might have meant to use the available field
17 |
18LL | banana: self.banana
19 | +++++
48663c56 20
e1599b0c 21error: aborting due to 2 previous errors
48663c56 22
e1599b0c 23For more information about this error, try `rustc --explain E0425`.