]> git.lizzy.rs Git - rust.git/blob - tests/ui/union/union-nonrepresentable.rs
Auto merge of #106458 - albertlarsan68:move-tests, r=jyn514
[rust.git] / tests / ui / union / union-nonrepresentable.rs
1 union U { //~ ERROR recursive type `U` has infinite size
2     a: u8,
3     b: std::mem::ManuallyDrop<U>,
4 }
5
6 fn main() {}