rust/tests/mir-opt/const_prop/slice_len.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
375 B
Rust
Raw Normal View History

2023-01-07 21:10:38 +00:00
// unit-test: ConstProp
2023-05-06 23:20:58 -04:00
// compile-flags: -Zmir-enable-passes=+InstSimplify
2023-12-02 21:04:15 +00:00
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
// EMIT_MIR_FOR_EACH_BIT_WIDTH
2020-04-04 17:15:01 +00:00
2020-07-27 21:22:43 +02:00
// EMIT_MIR slice_len.main.ConstProp.diff
fn main() {
2023-12-02 21:04:15 +00:00
// CHECK-LABEL: fn main(
// CHECK: debug a => [[a:_.*]];
// CHECK: assert(const true,
// CHECK: [[a]] = const 2_u32;
let a = (&[1u32, 2, 3] as &[u32])[1];
}