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

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

8 lines
139 B
Rust
Raw Normal View History

2019-09-14 08:22:07 -05:00
// compile-flags: -O
// EMIT_MIR_FOR_EACH_BIT_WIDTH
2020-07-27 14:22:43 -05:00
// EMIT_MIR repeat.main.ConstProp.diff
2019-09-14 08:22:07 -05:00
fn main() {
let x: u32 = [42; 8][2] + 0;
}