diff options
author | Edward Barnard <eabarnard@gmail.com> | 2015-01-03 14:03:44 +0000 |
---|---|---|
committer | Edward Barnard <eabarnard@gmail.com> | 2015-01-03 14:29:53 +0000 |
commit | b016bc541ad172479f83615eddf49c129b2ddb74 (patch) | |
tree | ca78451bac5a12f94d343cdc119fb622a973dcde /tests/headers/struct_with_anon_struct_array.h | |
parent | 76b8db5f9b1ed4637707574950a9c34a2ac3e1fe (diff) |
Recurse through arrays and pointers to anonymous structs. Closes #150.
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]; }; |