Files
rust/tests/ui/consts/miri_unleashed/mutating_global.rs

15 lines
263 B
Rust

//@ compile-flags: -Zunleash-the-miri-inside-of-you
// Make sure we cannot mutate globals.
static mut GLOBAL: i32 = 0;
static MUTATING_GLOBAL: () = {
unsafe {
GLOBAL = 99
//~^ ERROR modifying a static's initial value
}
};
fn main() {}