summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_prop/ref_deref.rs
blob: 5bceae749ff233323bef98c864db776a901b18e2 (plain)
1
2
3
4
5
6
7
8
9
// unit-test: ConstProp

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