summaryrefslogtreecommitdiff
path: root/tests/headers/union_with_big_member.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/union_with_big_member.h')
-rw-r--r--tests/headers/union_with_big_member.h14
1 files changed, 14 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..6347d6ca
--- /dev/null
+++ b/tests/headers/union_with_big_member.h
@@ -0,0 +1,14 @@
+union WithBigArray {
+ int a;
+ int b[33];
+};
+
+union WithBigArray2 {
+ int a;
+ char b[33];
+};
+
+union WithBigMember {
+ int a;
+ union WithBigArray b;
+};