mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
285 B
Rust
12 lines
285 B
Rust
// skip-filecheck
|
|
// unit-test: Derefer
|
|
// EMIT_MIR derefer_test_multiple.main.Derefer.diff
|
|
fn main () {
|
|
let mut a = (42, 43);
|
|
let mut b = (99, &mut a);
|
|
let mut c = (11, &mut b);
|
|
let mut d = (13, &mut c);
|
|
let x = &mut (*d.1).1.1.1;
|
|
let y = &mut (*d.1).1.1.1;
|
|
}
|