1 2 3 4 5 6 7 8 9
fn main() { let x = 42; match x { 0..=73 => {}, 74..=> {}, //~^ ERROR unexpected `>` after inclusive range //~| NOTE this is parsed as an inclusive range `..=` } }