summary refs log tree commit diff
path: root/src/test/ui/parser/pat-tuple-3.rs
blob: e1e975d3c3ea04b3a7d3a42b434d2a9f998ce65e (plain)
1
2
3
4
5
6
fn main() {
    match (0, 1, 2) {
        (.., pat, ..) => {}
        //~^ ERROR `..` can only be used once per tuple or tuple struct pattern
    }
}