Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
pattern
/
issue-8351-2.rs
blob: c1b839c89b5db29cddf75366aea6273b30630ad1 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
dead_code
)]
enum
E
{
Foo
{
f
:
isize
,
b
:
bool
},
Bar
,
}
pub
fn
main
()
{
let
e
=
E
::
Foo
{
f
:
0
,
b
:
false
};
match
e
{
E
::
Foo
{
f
:
1
,
b
:
true
}
=>
panic
!(),
E
::
Foo
{
b
:
false
,
f
:
0
}
=>
(),
_
=>
panic
!(),
}
}