summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2016-03-11 23:06:52 +0100
committerAnthony Ramine <n.oxyde@gmail.com>2016-03-11 23:06:52 +0100
commita637f511db0120b068df14d1305db3683bf8bc46 (patch)
treee82e132651062ce1771ba037bb65383a2d7dcd95
parentd0a9bde4d713c3c2335083369d30fdad88f49f04 (diff)
parent2384d87ca69894f0569219d16b5ffa96515ba834 (diff)
Merge pull request #287 from bsteinb/fix-test-union
Fix test_union::with_derive_debug.
-rw-r--r--tests/headers/union_with_big_member.h9
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;
+};