Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
ui
/
binding
/
pat-tuple-7.rs
blob: ad2bb7715afcb3deb467ac2fb64fb00509d55e90 [
file
]
//@ run-pass
fn
main
()
{
#[
allow
(
unused_parens
)]
match
0
{
(
pat
)
=>
assert_eq
!(
pat
,
0
)
}
}