rustc/tests/ui/parser/pat-lt-bracket-1.rs
2024-06-19 10:24:51 +02:00

8 lines
126 B
Rust

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