2019-04-18 00:22:16 +00:00
|
|
|
error[E0425]: cannot find value `banana` in this scope
|
|
|
|
--> $DIR/issue-60057.rs:8:21
|
|
|
|
|
|
|
|
|
LL | banana: banana
|
2019-04-18 16:43:15 +00:00
|
|
|
| ^^^^^^ a field by this name exists in `Self`
|
2019-04-18 00:22:16 +00:00
|
|
|
|
|
|
|
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`
|
|
|
|
|
2019-09-08 17:06:49 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2019-04-18 00:22:16 +00:00
|
|
|
|
2019-09-08 17:06:49 +00:00
|
|
|
For more information about this error, try `rustc --explain E0425`.
|