]> git.lizzy.rs Git - rust.git/blob - tests/mir-opt/const_prop/ref_deref_project.rs
Rollup merge of #106769 - lenko-d:libtest-print_why_a_test_was_ignored_if_its_the_onl...
[rust.git] / tests / mir-opt / const_prop / ref_deref_project.rs
1 // unit-test: ConstProp
2 // EMIT_MIR ref_deref_project.main.ConstProp.diff
3
4 fn main() {
5     *(&(4, 5).1); // This does not currently propagate (#67862)
6 }