rust/tests/ui/parser/issues/issue-99625-enum-struct-mutually-exclusive.fixed
2024-02-16 20:02:50 +00:00

14 lines
175 B
Rust

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