Sign in
◑
Theme
rust
/
rust
/
08ec41ea3dfd2d30a5747a084d0dbc79fba227d6
/
.
/
tests
/
ui
/
parser
/
issues
/
issue-99625-enum-struct-mutually-exclusive.fixed
blob: 37fa7fa54b6bd0fd7943b65a1b496228df267a75 [
file
]
//@ run-rustfix
pub
enum
Range
{
//~^ ERROR `enum` and `struct` are mutually exclusive
Valid
{
begin
:
u32
,
len
:
u32
,
},
Out
,
}
fn main
()
{
}