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