aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/match-slicepattern-array.rs
blob: e48ca757f5e0844ca9d150a2b24c1e6247440125 (plain)
1
2
3
4
5
6
7
8
fn main() {
    let a = [0, 1];

    match a {
        [0, 1] => {},
        _ => {}
    }
}