diff options
Diffstat (limited to 'tests/headers/struct_with_anon_struct.h')
-rw-r--r-- | tests/headers/struct_with_anon_struct.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/headers/struct_with_anon_struct.h b/tests/headers/struct_with_anon_struct.h new file mode 100644 index 00000000..1617d7a8 --- /dev/null +++ b/tests/headers/struct_with_anon_struct.h @@ -0,0 +1,6 @@ +struct foo { + struct { + int a; + int b; + } bar; +}; |