Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
issues
/
issue-99625-enum-struct-mutually-exclusive.fixed
blob: 37fa7fa54b6bd0fd7943b65a1b496228df267a75 [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
pub
enum
Range
{
//~^ ERROR `enum` and `struct` are mutually exclusive
Valid
{
begin
:
u32
,
len
:
u32
,
},
Out
,
}
fn main
()
{
}