Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
binding
/
match-with-at-binding-8391.rs
blob: bc4e7be7989297f1362a26bc8ea71d5c8da9023c [
file
] [
log
] [
blame
]
// https://github.com/rust-lang/rust/issues/8391
//@ run-pass
fn
main
()
{
let
x
=
match
Some
(
1
)
{
ref
_y
@
Some
(
_
)
=>
1
,
None
=>
2
,
};
assert_eq
!(
x
,
1
);
}