mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 22:09:53 +00:00
10 lines
212 B
Rust
10 lines
212 B
Rust
// skip-filecheck
|
|
//@ test-mir-pass: Derefer
|
|
// EMIT_MIR derefer_test.main.Derefer.diff
|
|
fn main() {
|
|
let mut a = (42, 43);
|
|
let mut b = (99, &mut a);
|
|
let x = &mut (*b.1).0;
|
|
let y = &mut (*b.1).1;
|
|
}
|