summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_prop/mutable_variable_no_prop.rs
blob: b69ec931a6311360a097698f26319e9e7b57a899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// unit-test
// compile-flags: -O

static mut STATIC: u32 = 0x42424242;

// EMIT_MIR mutable_variable_no_prop.main.ConstProp.diff
fn main() {
    let mut x = 42;
    unsafe {
        x = STATIC;
    }
    let y = x;
}