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