mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 20:00:43 +00:00
14 lines
174 B
Plaintext
14 lines
174 B
Plaintext
// run-rustfix
|
|
|
|
pub enum Range {
|
|
//~^ ERROR `enum` and `struct` are mutually exclusive
|
|
Valid {
|
|
begin: u32,
|
|
len: u32,
|
|
},
|
|
Out,
|
|
}
|
|
|
|
fn main() {
|
|
}
|