rust/src/test/mir-opt/const_prop/mutable_variable.rs
2020-07-29 13:41:11 +02:00

8 lines
132 B
Rust

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