summaryrefslogtreecommitdiff
path: root/tests/headers/struct_with_anon_struct_array.h
blob: 9ea977e8d79c99976b36a8319a2160c96a5aaa7a (plain)
1
2
3
4
5
6
7
8
9
10
struct foo {
    struct {
        int a;
        int b;
    } bar[2];
    struct {
        int a;
        int b;
    } baz[2][3][4];
};