#[derive(Clone)]
union U {
a: u8
}
union W {
a: std::mem::ManuallyDrop<String>
impl Copy for U {} // OK
impl Copy for W {} //~ ERROR the trait `Copy` cannot be implemented for this type
fn main() {}