Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
run-pass
/
nested-exhaustive-alt.rs
blob: c3cda92e027640f3e3467ecbc96a3e8bcd6e3b76 [
file
]
fn
main
()
{
match
@{
foo
:
true
,
bar
:
Some
(
10
),
baz
:
20
}
{
@{
foo
:
true
,
bar
:
Some
(
_
),
_
}
=>
{}
@{
foo
:
false
,
bar
:
None
,
_
}
=>
{}
@{
foo
:
true
,
bar
:
None
,
_
}
=>
{}
@{
foo
:
false
,
bar
:
Some
(
_
),
_
}
=>
{}
}
}