rust/src/test/mir-opt/const_prop/mutable_variable_aggregate_...

10 lines
178 B
Rust

// 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;
}