]> git.lizzy.rs Git - rust.git/blob - tests/mir-opt/const_prop/ref_deref.rs
Rollup merge of #107424 - bpeel:clone-into-from-share-code, r=scottmcm
[rust.git] / tests / mir-opt / const_prop / ref_deref.rs
1 // unit-test: ConstProp
2 // EMIT_MIR ref_deref.main.ConstProp.diff
3
4 fn main() {
5     *(&4);
6 }