summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_prop/ref_deref.rs
blob: d2549c8b6aa5aa13277bcc168dc6edb04f277264 (plain)
1
2
3
4
5
6
7
// compile-flags: -Zmir-enable-passes=-SimplifyLocals-before-const-prop
// EMIT_MIR ref_deref.main.PromoteTemps.diff
// EMIT_MIR ref_deref.main.ConstProp.diff

fn main() {
    *(&4);
}