rust/tests/ui/consts/write-to-static-mut-in-static.rs

11 lines
228 B
Rust
Raw Normal View History

pub static mut A: u32 = 0;
pub static mut B: () = unsafe { A = 1; };
2018-12-17 07:20:42 -06:00
//~^ ERROR could not evaluate static initializer
pub static mut C: u32 = unsafe { C = 1; 0 };
2018-12-17 07:20:42 -06:00
//~^ ERROR cycle detected
pub static D: u32 = D;
fn main() {}