rustc/tests/ui/union/union-nonrepresentable.rs
2023-08-02 10:33:26 +02:00

7 lines
118 B
Rust

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