Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// 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;