rust/tests/ui/parser/issue-99625-enum-struct-mutually-exclusive.fixed
2023-01-11 09:32:08 +00:00

13 lines
174 B
Rust

// run-rustfix
pub enum Range {
//~^ ERROR `enum` and `struct` are mutually exclusive
Valid {
begin: u32,
len: u32,
},
Out,
}
fn main() {
}