]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2497-if-let-chains/issue-93150.rs
Auto merge of #102193 - ferrocene:pa-remote-test-server-improvements, r=Mark-Simulacrum
[rust.git] / src / test / ui / rfc-2497-if-let-chains / issue-93150.rs
1 fn main() {
2     match true {
3         _ if let true = true && true => {}
4         //~^ ERROR `if let` guards are
5         //~| ERROR `let` expressions in this
6         _ => {}
7     }
8 }