]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/const_prop/ref_deref_project.rs
Merge commit '0cb0f7636851f9fcc57085cf80197a2ef6db098f' into clippyup
[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 }