]> git.lizzy.rs Git - rust.git/blob - tests/mir-opt/issue_76432.rs
Rollup merge of #107779 - compiler-errors:issue-107775, r=jackh726
[rust.git] / tests / mir-opt / issue_76432.rs
1 // compile-flags: -Zmir-enable-passes=-NormalizeArrayLen
2 // Check that we do not insert StorageDead at each target if StorageDead was never seen
3
4 // EMIT_MIR issue_76432.test.SimplifyComparisonIntegral.diff
5 use std::fmt::Debug;
6
7 fn test<T: Copy + Debug + PartialEq>(x: T) {
8     let v: &[T] = &[x, x, x];
9     match v {
10         [ref v1, ref v2, ref v3] => [v1 as *const _, v2 as *const _, v3 as *const _],
11         _ => unreachable!(),
12     };
13 }
14
15 fn main() {
16     test(0u32);
17 }