diff options
-rw-r--r-- | tests/headers/union_with_big_member.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/headers/union_with_big_member.h b/tests/headers/union_with_big_member.h new file mode 100644 index 00000000..06682ef1 --- /dev/null +++ b/tests/headers/union_with_big_member.h @@ -0,0 +1,9 @@ +union WithBigArray { + int a; + int b[33]; +}; + +union WithBigMember { + int a; + union WithBigArray b; +}; |