mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
73b38c661d
Instead we re-use the static's alloc id within the interpreter for its initializer to refer to the `Allocation` that only exists within the interpreter.
10 lines
251 B
Rust
10 lines
251 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 };
|
|
|
|
pub static D: u32 = D;
|
|
//~^ ERROR could not evaluate static initializer
|
|
|
|
fn main() {}
|