mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +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() {}
|