Skip to content

Commit e8e35c8

Browse files
committed
FileCheck bad_op_unsafe_oob_for_slices.
1 parent 97f03cb commit e8e35c8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/mir-opt/const_prop/bad_op_unsafe_oob_for_slices.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
// skip-filecheck
21
// unit-test: ConstProp
32
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
43
// EMIT_MIR_FOR_EACH_BIT_WIDTH
54

65
// EMIT_MIR bad_op_unsafe_oob_for_slices.main.ConstProp.diff
76
#[allow(unconditional_panic)]
87
fn main() {
8+
// CHECK-LABEL: fn main(
9+
// CHECK: debug a => [[a:_.*]];
10+
// CHECK: debug _b => [[b:_.*]];
11+
// CHECK: [[b]] = (*[[a]])[3 of 4];
912
let a: *const [_] = &[1, 2, 3];
1013
unsafe {
1114
let _b = (*a)[3];

0 commit comments

Comments
 (0)