]> git.lizzy.rs Git - rust.git/blob - src/test/ui/union/union-nonrepresentable.rs
Sync core::simd up to rust-lang/portable-simd@2e081db92aa3ee0a4563bc28ce01bdad5b1b2efd
[rust.git] / src / test / 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() {}