mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
7 lines
135 B
Rust
7 lines
135 B
Rust
fn main() {
|
|
match 5u32 {
|
|
1000 ..= 5 => {}
|
|
//~^ ERROR lower range bound must be less than or equal to upper
|
|
}
|
|
}
|