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