10 lines
208 B
Rust
10 lines
208 B
Rust
fn main() {
|
|
let x = 42;
|
|
match x {
|
|
0..=73 => {},
|
|
74..=> {},
|
|
//~^ ERROR unexpected `>` after inclusive range
|
|
//~| NOTE this is parsed as an inclusive range `..=`
|
|
}
|
|
}
|