mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 04:40:38 +00:00
12 lines
357 B
Plaintext
12 lines
357 B
Plaintext
error[E0124]: field `field` is already declared
|
|
--> $DIR/duplicated-fields-issue-125842.rs:6:5
|
|
|
|
|
LL | field: Option<u8>,
|
|
| ----------------- `field` first declared here
|
|
LL | field: u8,
|
|
| ^^^^^^^^^ field already declared
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0124`.
|