mirror of
https://github.com/rust-lang/rust.git
synced 2026-03-14 00:22:36 +00:00
11 lines
191 B
Rust
11 lines
191 B
Rust
// unit-test
|
|
// compile-flags: -O
|
|
|
|
// EMIT_MIR mutable_variable_aggregate_mut_ref.main.ConstProp.diff
|
|
fn main() {
|
|
let mut x = (42, 43);
|
|
let z = &mut x;
|
|
z.1 = 99;
|
|
let y = x;
|
|
}
|