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