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
251 B
Rust
Raw Normal View History

2023-04-05 09:44:20 +01:00
// ignore-wasm32 compiled with panic=abort by default
2023-01-07 21:10:38 +00:00
// unit-test: ConstProp
// compile-flags: -Zmir-enable-passes=+InstCombine
// 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() {
2019-05-20 05:46:33 -04:00
(&[1u32, 2, 3] as &[u32])[1];
}