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

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

9 lines
202 B
Rust
Raw Normal View History

2023-04-05 09:44:20 +01:00
// ignore-wasm32 compiled with panic=abort by default
2022-07-26 19:04:27 +02:00
// unit-test: ConstProp
// EMIT_MIR_FOR_EACH_BIT_WIDTH
2020-04-04 17:15:01 +00:00
2020-07-27 21:22:43 +02:00
// EMIT_MIR array_index.main.ConstProp.diff
fn main() {
let x: u32 = [0, 1, 2, 3][2];
}