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

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