rust/tests/ui/parser/pat-lt-bracket-1.rs

8 lines
126 B
Rust

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