diff options
Diffstat (limited to 'tests/headers/struct_with_anon_struct_array.h')
-rw-r--r-- | tests/headers/struct_with_anon_struct_array.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/headers/struct_with_anon_struct_array.h b/tests/headers/struct_with_anon_struct_array.h index 2d9d7bdd..9ea977e8 100644 --- a/tests/headers/struct_with_anon_struct_array.h +++ b/tests/headers/struct_with_anon_struct_array.h @@ -3,4 +3,8 @@ struct foo { int a; int b; } bar[2]; + struct { + int a; + int b; + } baz[2][3][4]; }; |