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