]> git.lizzy.rs Git - rust.git/blobdiff - tests/mir-opt/const_prop/mutable_variable_no_prop.rs
Auto merge of #106696 - kylematsuda:early-binder, r=lcnr
[rust.git] / tests / mir-opt / const_prop / mutable_variable_no_prop.rs
index 8c23c5fcf0f88948a0952e751394e693bd26ca30..b69ec931a6311360a097698f26319e9e7b57a899 100644 (file)
@@ -1,7 +1,7 @@
 // unit-test
 // compile-flags: -O
 
-static mut STATIC: u32 = 42;
+static mut STATIC: u32 = 0x42424242;
 
 // EMIT_MIR mutable_variable_no_prop.main.ConstProp.diff
 fn main() {