2018-06-03 13:47:19 -05:00
|
|
|
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
|
2018-06-03 13:47:19 -05:00
|
|
|
|
|
|
|
pub static mut C: u32 = unsafe { C = 1; 0 };
|
2018-12-17 07:20:42 -06:00
|
|
|
//~^ ERROR cycle detected
|
2018-06-03 13:47:19 -05:00
|
|
|
|
|
|
|
pub static D: u32 = D;
|
|
|
|
|
|
|
|
fn main() {}
|