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