summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/issue_76432.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/mir-opt/issue_76432.rs')
-rw-r--r--src/test/mir-opt/issue_76432.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/mir-opt/issue_76432.rs b/src/test/mir-opt/issue_76432.rs
deleted file mode 100644
index c8b405ca8..000000000
--- a/src/test/mir-opt/issue_76432.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-// 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);
-}