summaryrefslogtreecommitdiff
path: root/libbindgen/tests/headers/union_with_anon_struct.h
blob: 7f8dec953f45d5fb50363b6a6b50965604958ff0 (plain)
1
2
3
4
5
6
union foo {
    struct {
        unsigned int a;
        unsigned int b;
    } bar;
};