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