mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-21 07:58:17 +00:00
7 lines
118 B
Rust
7 lines
118 B
Rust
union U { //~ ERROR recursive type `U` has infinite size
|
|
a: u8,
|
|
b: std::mem::ManuallyDrop<U>,
|
|
}
|
|
|
|
fn main() {}
|