mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
9 lines
163 B
Rust
9 lines
163 B
Rust
// compile-flags: -Z teach
|
|
|
|
fn main() {
|
|
match 5u32 {
|
|
1000 ..= 5 => {}
|
|
//~^ ERROR lower range bound must be less than or equal to upper
|
|
}
|
|
}
|