rust/src/test/ui/parser/pat-tuple-1.rs

6 lines
93 B
Rust

fn main() {
match 0 {
(, ..) => {} //~ ERROR expected pattern, found `,`
}
}