rust/src/test/ui/parser/issue-99625-enum-struct-mutually-exclusive.fixed
2022-07-29 13:57:04 +03:00

14 lines
174 B
Rust

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