Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
binding
/
match-ref-binding.rs
blob: d211c455e163921cd2f298bda55f28b10ce26feb [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
fn
destructure
(
x
:
Option
<
isize
>)
->
isize
{
match
x
{
None
=>
0
,
Some
(
ref
v
)
=>
*
v
}
}
pub
fn
main
()
{
assert_eq
!(
destructure
(
Some
(
22
)),
22
);
}