summaryrefslogtreecommitdiff
path: root/tests/headers/struct_with_struct.h
blob: 953472c8898370479134b79f9f85770579080039 (plain)
1
2
3
4
5
6
7
8
// bindgen-flags: --with-derive-hash --with-derive-partialeq
//
struct foo {
    struct {
        unsigned int x;
        unsigned int y;
    } bar;
};