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