blob: 11c4ab9c5fc74e875d3f5394f678f14cdcdbc523 [file] [log] [blame]
// check-pass
#![feature(exclusive_range_pattern)]
fn main() {
const PAT: u8 = 1;
match 0 {
(.. PAT) => {}
_ => {}
}
}