rustc/tests/ui/parser/issues/issue-99625-enum-struct-mutually-exclusive.fixed
2024-06-21 09:39:33 +02:00

14 lines
175 B
Plaintext

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