2018-02-08 03:35:35 +00:00
|
|
|
error[E0609]: no field `foo` on type `Foo`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/E0609.rs:8:15
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let _ = x.foo;
|
2023-11-09 06:01:10 +00:00
|
|
|
| ^^^ unknown field
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2023-10-24 02:06:06 +00:00
|
|
|
= note: available field is: `x`
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
|
|
error[E0609]: no field `1` on type `Bar`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/E0609.rs:11:7
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | y.1;
|
2023-11-09 06:01:10 +00:00
|
|
|
| ^ unknown field
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0609`.
|