summaryrefslogtreecommitdiff
path: root/tests/headers/struct_with_anon_unnamed_union.h
blob: 00fa4900c17991334eb4618a9a8c769b593f5a5f (plain)
1
2
3
4
5
6
7
// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq
struct foo {
    union {
        unsigned int a;
        unsigned short b;
    };
};