rust/tests/ui/parser/issues/issue-99625-enum-struct-mutually-exclusive.rs
Esteban Küber 855444ec54 mv tests
2023-10-24 21:27:05 +00:00

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() {
}