summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/write-to-static-mut-in-static.rs
blob: 43c63fed8cef19efd88767d2973a012fe0215107 (plain)
1
2
3
4
5
6
7
8
9
10
pub static mut A: u32 = 0;
pub static mut B: () = unsafe { A = 1; };
//~^ ERROR could not evaluate static initializer

pub static mut C: u32 = unsafe { C = 1; 0 };
//~^ ERROR cycle detected

pub static D: u32 = D;

fn main() {}