blob: e2081a013a2be3f557539dd90e6345b1a1ff2e40 [file] [log] [blame]
// bindgen-flags: --with-derive-partialeq --impl-partialeq
/// Deriving PartialEq for rust unions is not supported.
union ShouldNotDerivePartialEq {
char a;
int b;
};