use rebound::{Type, rebound}; #[rebound] union GenericUnion { a: i32, b: core::mem::ManuallyDrop, } #[rebound] union ConstGenericUnion { a: [u8; N], b: u128, } fn main() { Type::from::>(); Type::from::>(); }