1
Fork 0
rust/tests/ui/parser/pat-tuple-2.rs

8 lines
83 B
Rust
Raw Normal View History

//@ check-pass
2019-07-08 03:03:12 +02:00
2016-05-12 15:17:02 +02:00
fn main() {
match (0, 1, 2) {
(pat, ..,) => {}
2016-05-12 15:17:02 +02:00
}
}