Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
rfcs
/
rfc-2497-if-let-chains
/
issue-93150.rs
blob: f90b9ab0d40f03c9823583dc785d1e78f56749c8 [
file
] [
log
] [
blame
] [
edit
]
fn
main
()
{
match
true
{
_
if
let
true
=
true
&&
true
=>
{}
//~^ ERROR `if let` guards are
//~| ERROR `let` expressions in this
_
=>
{}
}
}