rust/tests/ui/union/union-nonrepresentable.rs

7 lines
118 B
Rust

union U { //~ ERROR recursive type `U` has infinite size
a: u8,
b: std::mem::ManuallyDrop<U>,
}
fn main() {}