summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/issue_76432.rs
blob: c8b405ca8eaaf374702246cd420f0a63eb9dd996 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Check that we do not insert StorageDead at each target if StorageDead was never seen

// EMIT_MIR issue_76432.test.SimplifyComparisonIntegral.diff
use std::fmt::Debug;

fn test<T: Copy + Debug + PartialEq>(x: T) {
    let v: &[T] = &[x, x, x];
    match v {
        [ref v1, ref v2, ref v3] => [v1 as *const _, v2 as *const _, v3 as *const _],
        _ => unreachable!(),
    };
}

fn main() {
    test(0u32);
}