diff options
Diffstat (limited to 'tests/headers/union_with_anon_unnamed_union.h')
-rw-r--r-- | tests/headers/union_with_anon_unnamed_union.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/headers/union_with_anon_unnamed_union.h b/tests/headers/union_with_anon_unnamed_union.h new file mode 100644 index 00000000..7580771a --- /dev/null +++ b/tests/headers/union_with_anon_unnamed_union.h @@ -0,0 +1,7 @@ +union foo { + unsigned int a; + union { + unsigned short b; + unsigned char c; + }; +}; |