Files
rust/src/test/mir-opt/const_prop/mutable_variable_aggregate.rs

9 lines
129 B
Rust
Raw Normal View History

// compile-flags: -O
// EMIT_MIR rustc.main.ConstProp.diff
fn main() {
let mut x = (42, 43);
x.1 = 99;
let y = x;
}