rust/src/test/ui/parser/pat-tuple-5.rs
2019-03-28 04:47:37 -07:00

5 lines
94 B
Rust

fn main() {
match (0, 1) {
(pat ..) => {} //~ ERROR unexpected token: `)`
}
}