Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
match
/
guards-parenthesized-and.rs
blob: 7e3b930d6e855ad549af751fa3d532acb246f4e5 [
file
] [
log
] [
blame
]
//@ check-pass
fn
main
()
{
let
c
=
1
;
let
w
=
"T"
;
match
Some
(
5
)
{
None
if
c
==
1
&&
(
w
!=
"Y"
&&
w
!=
"E"
)
=>
{}
_
=>
panic
!(),
}
}