summaryrefslogtreecommitdiff
path: root/tests/headers/derive-partialeq-union.hpp
blob: e2081a013a2be3f557539dd90e6345b1a1ff2e40 (plain)
1
2
3
4
5
6
7
// bindgen-flags: --with-derive-partialeq --impl-partialeq

/// Deriving PartialEq for rust unions is not supported.
union ShouldNotDerivePartialEq {
    char a;
    int b;
};