mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
368 B
Plaintext
12 lines
368 B
Plaintext
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`.
|