mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 07:09:20 +00:00
11 lines
228 B
Rust
11 lines
228 B
Rust
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() {}
|