about summary refs log tree commit diff
path: root/src/test/mir-opt/const_prop/repeat.rs
blob: cdbfc46d6ca0e35214a65af4868c4532ac17807d (plain)
1
2
3
4
5
6
7
// compile-flags: -O

// EMIT_MIR_FOR_EACH_BIT_WIDTH
// EMIT_MIR rustc.main.ConstProp.diff
fn main() {
    let x: u32 = [42; 8][2] + 0;
}