]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/const_prop/ref_deref_project.rs
Rollup merge of #100382 - jackh726:gat-self-outlives-input, r=compiler-errors
[rust.git] / src / test / mir-opt / const_prop / ref_deref_project.rs
1 // unit-test
2 // EMIT_MIR ref_deref_project.main.PromoteTemps.diff
3 // EMIT_MIR ref_deref_project.main.ConstProp.diff
4
5 fn main() {
6     *(&(4, 5).1); // This does not currently propagate (#67862)
7 }