blob: 54529fdf5ba72c139def40425dc25dbd2c852bf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0609]: no field `nonexistent_field` on type `MyStruct`
--> $DIR/issue-19244-2.rs:5:27
|
LL | let a: [isize; STRUCT.nonexistent_field];
| ^^^^^^^^^^^^^^^^^ unknown field
|
= note: available fields are: `field`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0609`.
|