Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
match
/
match-ref-option-pattern.rs
blob: a6de2361503a8d647e7e332fd9cef5766d918cae [
file
] [
log
] [
blame
]
//! regression test for issue #3500
//@ run-pass
pub
fn
main
()
{
let
x
=
&
Some
(
1
);
match
x
{
&
Some
(
_
)
=>
(),
&
None
=>
(),
}
}