blob: 30173b1b4be031eb2642eab7234bb7b65e439548 [file] [log] [blame]
fn main() {
let x = 42;
match x {
0..=73 => {},
74..=> {},
//~^ ERROR unexpected `>` after inclusive range
//~| NOTE this is parsed as an inclusive range `..=`
}
}