2024-02-16 20:02:50 +00:00
|
|
|
//@ compile-flags: -Z teach
|
2016-05-17 13:01:31 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
match 5u32 {
|
2018-05-29 02:42:11 +00:00
|
|
|
1000 ..= 5 => {}
|
2016-08-15 06:21:13 +00:00
|
|
|
//~^ ERROR lower range bound must be less than or equal to upper
|
2016-05-17 13:01:31 +00:00
|
|
|
}
|
|
|
|
}
|