summaryrefslogtreecommitdiff
path: root/tests/headers/union_with_anon_unnamed_struct.h
blob: 79558049edbdaaca55010e07d2211f5688e159e4 (plain)
1
2
3
4
5
6
7
8
9
union pixel {
    unsigned int rgba;
    struct {
        unsigned char r;
        unsigned char g;
        unsigned char b;
        unsigned char a;
    };
};