blob: 95e58b1d48c88cae40440c04b97fc35638e9b074 [file] [log] [blame]
#![feature(exclusive_range_pattern)]
fn main() {
match [5..4, 99..105, 43..44] {
[..9, 99..100, _] => {},
//~^ ERROR `..X` range patterns are not supported
//~| ERROR mismatched types
//~| ERROR mismatched types
_ => {},
}
}