blob: 5ef43ab0178888c95f79bace0d3470054c0c92b0 [file] [log] [blame]
// compile-flags: -Z parse-only
fn main() {
match 42 {
x < 7 => (),
//~^ error: expected one of `=>`, `@`, `if`, or `|`, found `<`
_ => ()
}
}