blob: 24581889ae9547ded6c80edf1b793c2cf6fffc3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
error[E0609]: no field `foo` on type `Foo`
--> $DIR/E0609.rs:18:15
|
LL | let _ = x.foo; //~ ERROR E0609
| ^^^ unknown field
|
= note: available fields are: `x`
error[E0609]: no field `1` on type `Bar`
--> $DIR/E0609.rs:21:5
|
LL | y.1; //~ ERROR E0609
| ^^^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0609`.
|