error[E0072]: recursive type `U` has infinite size --> $DIR/union-nonrepresentable.rs:1:1 | LL | union U { | ^^^^^^^ LL | a: u8, LL | b: std::mem::ManuallyDrop, | - recursive without indirection | help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to break the cycle | LL | b: std::mem::ManuallyDrop>, | ++++ + error: aborting due to previous error For more information about this error, try `rustc --explain E0072`.