summaryrefslogtreecommitdiff
path: root/tests/headers/struct_with_anon_union_1_0.h
blob: 847c354b592ab36dac3fcd75744646179bb50a61 (plain)
1
2
3
4
5
6
7
8
// bindgen-flags: --rust-target 1.0 --with-derive-hash --with-derive-partialeq --with-derive-eq

struct foo {
    union {
        unsigned int a;
        unsigned short b;
    } bar;
};