mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
10 lines
206 B
Rust
10 lines
206 B
Rust
// skip-filecheck
|
|
// unit-test: 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;
|
|
}
|