blob: 2e2001434f28c79589759a31a01d6dc4d80a6d6e [file] [log] [blame]
fn main() {
match 42 {
x < 7 => (),
//~^ error: expected one of `=>`, `@`, `if`, or `|`, found `<`
_ => ()
}
}