summary refs log tree commit diff
path: root/src/test/mir-opt/const_prop/ref_deref_project.rs
blob: 0322e3006431713d1c5145d98fdded2d1c62878e (plain)
1
2
3
4
5
6
// EMIT_MIR rustc.main.PromoteTemps.diff
// EMIT_MIR rustc.main.ConstProp.diff

fn main() {
    *(&(4, 5).1); // This does not currently propagate (#67862)
}