mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 00:29:23 +00:00
12 lines
361 B
Plaintext
12 lines
361 B
Plaintext
error[E0559]: variant `Field::Fool` has no field named `joke`
|
|
--> $DIR/E0559.rs:6:27
|
|
|
|
|
LL | let s = Field::Fool { joke: 0 };
|
|
| ^^^^ `Field::Fool` does not have this field
|
|
|
|
|
= note: available fields are: `x`
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0559`.
|