summary refs log tree commit diff
path: root/src/test/ui/parser/pat-tuple-2.rs
blob: fd25499381a2849df1801e7b5733a52ff5bddf86 (plain)
1
2
3
4
5
6
fn main() {
    match (0, 1, 2) {
        (pat, ..,) => {}
        //~^ ERROR trailing comma is not permitted after `..`
    }
}