rust/tests/ui/parser/pat-lt-bracket-1.rs
2023-01-11 09:32:08 +00:00

8 lines
126 B
Rust

fn main() {
match 42 {
x < 7 => (),
//~^ error: expected one of `=>`, `@`, `if`, or `|`, found `<`
_ => ()
}
}