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