rust/tests/ui/parser/issue-99625-enum-struct-mutually-exclusive.fixed

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
174 B
Rust
Raw Normal View History

2022-07-26 18:17:07 -05:00
// run-rustfix
pub enum Range {
//~^ ERROR `enum` and `struct` are mutually exclusive
Valid {
begin: u32,
len: u32,
},
Out,
}
fn main() {
}