rust/tests/ui/parser/issues/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
175 B
Rust
Raw Normal View History

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