DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.78.0%2Bdfsg1-2~deb12u3 / tests / ui / rfcs / rfc-2497-if-let-chains / issue-93150.rs
12345678
fn main() { match true { _ if let true = true && true => {} //~^ ERROR `if let` guards are //~| ERROR `let` expressions in this _ => {} } }