rust/tests/ui/parser/pat-lt-bracket-1.rs
2023-12-03 12:25:46 +01:00

8 lines
136 B
Rust

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