2018-06-04 18:38:59 +01:00
|
|
|
pub static FOO: u32 = FOO;
|
2025-06-27 12:47:47 +02:00
|
|
|
//~^ ERROR encountered static that tried to access itself during initialization
|
2023-10-12 11:27:43 +00:00
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
|
pub union Foo {
|
|
|
|
|
x: u32,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub static BAR: Foo = BAR;
|
2025-06-27 12:47:47 +02:00
|
|
|
//~^ ERROR encountered static that tried to access itself during initialization
|
2018-06-04 18:38:59 +01:00
|
|
|
|
|
|
|
|
fn main() {}
|