mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +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() {
|
|
}
|