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
_ => {}
}
}