summary refs log tree commit diff
path: root/tests/mir-opt/const_prop/repeat.rs
blob: d881462b877e77bf28ce1e60e9f74c54827eb81c (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ unit-test: GVN
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
// EMIT_MIR_FOR_EACH_BIT_WIDTH

// EMIT_MIR repeat.main.GVN.diff
fn main() {
    // CHECK-LABEL: fn main(
    // CHECK: debug x => [[x:_.*]];
    // CHECK: [[x]] = const 42_u32;
    let x: u32 = [42; 8][2] + 0;
}