Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
rfcs
/
rfc-2497-if-let-chains
/
issue-93150.rs
blob: f6de37867d85566b84fb0266c0fe5e5f7101faa9 [
file
] [
log
] [
blame
]
fn
main
()
{
match
true
{
_
if
let
true
=
true
&&
true
=>
{}
//~^ ERROR `if let` guards are
_
=>
{}
}
}