blob: a5d8f87261b2b5da3d20201f1d386fc9e8d0431b [file] [log] [blame]
fn main() {
match 5u32 {
1000 ..= 5 => {}
//~^ ERROR lower range bound must be less than or equal to upper
//~| ERROR lower range bound must be less than or equal to upper
}
}