mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
8 lines
135 B
Rust
8 lines
135 B
Rust
fn main() {
|
|
match true {
|
|
_ if let true = true && true => {}
|
|
//~^ ERROR `if let` guards are
|
|
_ => {}
|
|
}
|
|
}
|