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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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 14:20:42 +01:00
//~^ ERROR could not evaluate static initializer
pub static mut C: u32 = unsafe { C = 1; 0 };
2018-12-17 14:20:42 +01:00
//~^ ERROR cycle detected
pub static D: u32 = D;
fn main() {}