1 // bindgen-flags: --with-derive-partialeq --impl-partialeq 2 3 /// Deriving PartialEq for rust unions is not supported. 4 union ShouldNotDerivePartialEq { 5 char a; 6 int b; 7 }; 8