rust/tests/ui/error-codes/E0029-teach.rs

12 lines
213 B
Rust

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