summaryrefslogtreecommitdiffstats
path: root/tests/ui/error-codes/E0030.rs
blob: a5d8f87261b2b5da3d20201f1d386fc9e8d0431b (plain)
1
2
3
4
5
6
7
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
    }
}