blob: d9b53e113c01ea14585e5f1f5f2b4183d142ccbe [file] [log] [blame]
fn main() {
let s = "hoho";
match s {
"hello" ..= "world" => {}
//~^ ERROR only `char` and numeric types are allowed in range patterns
_ => {}
}
}