summaryrefslogtreecommitdiff
path: root/tests/headers/union_bitfield.h
blob: 990729574afcec3fa1abcd802192df88d5b345a7 (plain)
1
2
3
4
5
6
7
8
9
10
// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq --impl-partialeq

union U4 {
    unsigned derp : 1;
};

union B {
    unsigned foo : 31;
    unsigned char bar : 1;
};