rust/tests/ui/consts/const-eval/assign-to-static-within-other-static.rs

13 lines
292 B
Rust
Raw Normal View History

2018-11-19 04:19:14 -06:00
// New test for #53818: modifying static memory at compile-time is not allowed.
// The test should never compile successfully
use std::cell::UnsafeCell;
static mut FOO: u32 = 42;
static BOO: () = unsafe {
FOO = 5;
//~^ could not evaluate static initializer [E0080]
2018-11-19 04:19:14 -06:00
};
fn main() {}