summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/const_prop/large_array_index.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/mir-opt/const_prop/large_array_index.rs')
-rw-r--r--src/test/mir-opt/const_prop/large_array_index.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/test/mir-opt/const_prop/large_array_index.rs b/src/test/mir-opt/const_prop/large_array_index.rs
deleted file mode 100644
index 48d134376..000000000
--- a/src/test/mir-opt/const_prop/large_array_index.rs
+++ /dev/null
@@ -1,7 +0,0 @@
-// EMIT_MIR_FOR_EACH_BIT_WIDTH
-
-// EMIT_MIR large_array_index.main.ConstProp.diff
-fn main() {
- // check that we don't propagate this, because it's too large
- let x: u8 = [0_u8; 5000][2];
-}