summaryrefslogtreecommitdiff
path: root/tests/headers/union_with_anon_unnamed_struct_1_0.h
blob: be649c3f78ade5791bcc0a65b2a84c994797dfea (plain)
1
2
3
4
5
6
7
8
9
10
11
// bindgen-flags: --rust-target 1.0 --with-derive-hash

union pixel {
    unsigned int rgba;
    struct {
        unsigned char r;
        unsigned char g;
        unsigned char b;
        unsigned char a;
    };
};