aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/match-restpattern-tuple-1.rs
blob: 5cce3c409f0ef08cf517e49c5d05bd90e1f1854a (plain)
1
2
3
4
5
6
7
8
fn main() {
    let x = (1, 2, 3, 4);

    match x {
        (1, .., 4) => {},
        _ => {}
    }
}