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