blob: 9cc886641293b3731fb5fcb781143ded6dc0ba85 [file] [log] [blame]
// run-rustfix
pub enum struct Range {
//~^ ERROR `enum` and `struct` are mutually exclusive
Valid {
begin: u32,
len: u32,
},
Out,
}
fn main() {
}