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.

10 lines
234 B
Rust
Raw Normal View History

// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
2023-01-07 15:10:38 -06:00
// unit-test: ConstProp
2023-05-06 22:20:58 -05:00
// compile-flags: -Zmir-enable-passes=+InstSimplify
// EMIT_MIR_FOR_EACH_BIT_WIDTH
2020-04-04 12:15:01 -05:00
2020-07-27 14:22:43 -05:00
// EMIT_MIR slice_len.main.ConstProp.diff
fn main() {
2019-05-20 04:46:33 -05:00
(&[1u32, 2, 3] as &[u32])[1];
}