mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-01 03:03:40 +00:00
16 lines
318 B
Rust
16 lines
318 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 could not evaluate static initializer
|
|
//~| NOTE modifying a static's initial value
|
|
}
|
|
};
|
|
|
|
fn main() {}
|