summary refs log tree commit diff
path: root/src/test/mir-opt/const_prop/mutable_variable.rs
blob: b3a2d80fa950a371b8d22c6523c1c4c535c34274 (plain)
1
2
3
4
5
6
7
8
// compile-flags: -O

// EMIT_MIR rustc.main.ConstProp.diff
fn main() {
    let mut x = 42;
    x = 99;
    let y = x;
}