]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/derefer_test.rs
Merge commit 'd3a2366ee877075c59b38bd8ced55f224fc7ef51' into sync_cg_clif-2022-07-26
[rust.git] / src / test / mir-opt / derefer_test.rs
1 // EMIT_MIR derefer_test.main.Derefer.diff
2 fn main() {
3     let mut a = (42,43);
4     let mut b = (99, &mut a);
5     let x = &mut (*b.1).0;
6     let y = &mut (*b.1).1;
7 }