12 lines
213 B
Rust
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
|
|
_ => {}
|
|
}
|
|
}
|