summaryrefslogtreecommitdiffstats
path: root/tests/ui/binding/zero_sized_subslice_match.rs
blob: 187c2983633e7dcb3a18e34bfa56102393ccfd0f (plain)
1
2
3
4
5
6
7
8
9
10
11
// run-pass

fn main() {
    let x = [(), ()];

    // The subslice used to go out of bounds for zero-sized array items, check that this doesn't
    // happen anymore
    match x {
        [_, ref y @ ..] => assert_eq!(&x[1] as *const (), &y[0] as *const ())
    }
}