mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-01 21:51:47 +00:00
14 lines
175 B
Plaintext
14 lines
175 B
Plaintext
//@ run-rustfix
|
|
|
|
pub enum Range {
|
|
//~^ ERROR `enum` and `struct` are mutually exclusive
|
|
Valid {
|
|
begin: u32,
|
|
len: u32,
|
|
},
|
|
Out,
|
|
}
|
|
|
|
fn main() {
|
|
}
|