about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCamille GILLOT <gillot.camille@gmail.com>2023-12-02 20:17:20 +0000
committerCamille GILLOT <gillot.camille@gmail.com>2023-12-02 20:17:20 +0000
commit9f01d9d1b61cd013bc8c21711f1f27455bffc21a (patch)
treeeaeea82935a35d2a2170470593a0d3365a7ed733
parent6564bac53254ae68fd5788bb0ce4b83f9ba4f8e4 (diff)
downloadrust-9f01d9d1b61cd013bc8c21711f1f27455bffc21a.tar.gz
rust-9f01d9d1b61cd013bc8c21711f1f27455bffc21a.zip
FileCheck array_index.
-rw-r--r--tests/mir-opt/const_prop/array_index.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/mir-opt/const_prop/array_index.rs b/tests/mir-opt/const_prop/array_index.rs
index 3bd2321653d..c4c46d78f75 100644
--- a/tests/mir-opt/const_prop/array_index.rs
+++ b/tests/mir-opt/const_prop/array_index.rs
@@ -1,9 +1,11 @@
-// skip-filecheck
-// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
 // unit-test: ConstProp
+// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
 // EMIT_MIR_FOR_EACH_BIT_WIDTH
 
 // EMIT_MIR array_index.main.ConstProp.diff
 fn main() {
+    // CHECK-LABEL: fn main(
+    // CHECK: debug x => [[x:_.*]];
+    // CHECK: [[x]] = const 2_u32;
     let x: u32 = [0, 1, 2, 3][2];
 }