about summary refs log tree commit diff
path: root/tests/mir-opt/const_prop/ref_deref.rs
blob: aef36323cc0337ee66e647c4371eb4f262b672dc (plain)
1
2
3
4
5
6
7
8
9
//@ test-mir-pass: GVN

// EMIT_MIR ref_deref.main.GVN.diff
fn main() {
    // CHECK-LABEL: fn main(
    // CHECK: debug a => [[a:_.*]];
    // CHECK: [[a]] = const 4_i32;
    let a = *(&4);
}