rustc/tests/ui/half-open-range-patterns/pat-tuple-4.rs
2024-07-31 08:40:13 +02:00

11 lines
113 B
Rust

//@ check-pass
fn main() {
const PAT: u8 = 1;
match 0 {
(.. PAT) => {}
_ => {}
}
}