rust/src/test/ui/error-codes/E0029.rs
2018-12-25 21:08:33 -07:00

10 lines
182 B
Rust

fn main() {
let s = "hoho";
match s {
"hello" ..= "world" => {}
//~^ ERROR only char and numeric types are allowed in range patterns
_ => {}
}
}