summaryrefslogtreecommitdiff
path: root/tests/headers/union_with_anon_struct_bitfield.h
blob: 24c7dce8491fdaf5a189e4148692771f53bcca1b (plain)
1
2
3
4
5
6
7
8
// bindgen-flags: --no-unstable-rust
union foo {
    int a;
    struct {
        int b : 7;
        int c : 25;
    };
};