summaryrefslogtreecommitdiff
path: root/tests/headers/struct_with_anon_struct_array.h
blob: 459e274a232f8f3bce0445fdb2041872031db6ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// bindgen-flags: --with-derive-hash
//
struct foo {
    struct {
        int a;
        int b;
    } bar[2];
    struct {
        int a;
        int b;
    } baz[2][3][4];
};