blob: 995ef03c83ed7c3d3eb307b139d14cb2a947be96 [file] [log] [blame]
#![feature(exclusive_range_pattern)]
fn main() {
const PAT: u8 = 1;
match (0, 1) {
(PAT ..) => {} //~ ERROR mismatched types
}
}