2018-02-07 21:35:35 -06:00
|
|
|
// compile-flags: -Z teach
|
|
|
|
|
2016-05-17 08:01:31 -05:00
|
|
|
fn main() {
|
|
|
|
let s = "hoho";
|
|
|
|
|
|
|
|
match s {
|
2018-05-28 21:42:11 -05:00
|
|
|
"hello" ..= "world" => {}
|
2020-09-15 14:34:58 -05:00
|
|
|
//~^ ERROR only `char` and numeric types are allowed in range patterns
|
2016-05-17 08:01:31 -05:00
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|