Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
match
/
issue-33498.rs
blob: 8d741927a41b64904342b11c6483bad331e46c7b [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
unused_variables
)]
pub
fn
main
()
{
let
x
=
(
0
,
2
);
match
x
{
(
0
,
ref
y
)
=>
{}
(
y
,
0
)
=>
{}
_
=>
(),
}
}