rust/tests/ui/parser/issues/issue-99625-enum-struct-mutually-exclusive.fixed
Esteban Küber 855444ec54 mv tests
2023-10-24 21:27:05 +00: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() {
}