Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
pattern
/
usefulness
/
issue-39362.rs
blob: ea3c8f88e0b36cf2629da444f7c1af7f4eb07724 [
file
] [
log
] [
blame
] [
edit
]
enum
Foo
{
Bar
{
bar
:
Bar
,
id
:
usize
}
}
enum
Bar
{
A
,
B
,
C
,
D
,
E
,
F
}
fn
test
(
f
:
Foo
)
{
match
f
{
//~^ ERROR non-exhaustive patterns
//~| patterns
Foo
::
Bar
{
bar
:
Bar
::
A
,
..
}
=>
(),
Foo
::
Bar
{
bar
:
Bar
::
B
,
..
}
=>
(),
}
}
fn
main
()
{}