mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
8 lines
124 B
Rust
8 lines
124 B
Rust
// check-pass
|
|
|
|
fn main() {
|
|
let (0 | (1 | _)) = 0;
|
|
if let 0 | (1 | 2) = 0 {}
|
|
if let x @ 0 | x @ (1 | 2) = 0 {}
|
|
}
|