blob: 7b65ef049e4e5378d5dd26e8b03475549aac0ae6 [file] [log] [blame] [edit]
fn main() {
match 5 {
6 ..= 1 => { }
//~^ ERROR lower bound for range pattern must be less than or equal to upper bound
_ => { }
};
match 5 {
0 .. 0 => { }
//~^ ERROR lower bound for range pattern must be less than upper bound
_ => { }
};
match 5u64 {
0xFFFF_FFFF_FFFF_FFFF ..= 1 => { }
//~^ ERROR lower bound for range pattern must be less than or equal to upper bound
_ => { }
};
}