]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/const_prop/ref_deref_project.rs
Merge commit 'c19edfd71a1d0ddef86c2c67fdb40718d40a72b4' into sync_cg_clif-2022-07-25
[rust.git] / src / test / mir-opt / const_prop / ref_deref_project.rs
1 // EMIT_MIR ref_deref_project.main.PromoteTemps.diff
2 // EMIT_MIR ref_deref_project.main.ConstProp.diff
3
4 fn main() {
5     *(&(4, 5).1); // This does not currently propagate (#67862)
6 }