rust/src/test/ui/error-codes/E0030.rs
Vadim Petrochenkov 642669c74d Update tests
2020-01-09 21:23:12 +03:00

7 lines
208 B
Rust

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
}
}