diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-03-11 23:06:52 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-03-11 23:06:52 +0100 |
commit | a637f511db0120b068df14d1305db3683bf8bc46 (patch) | |
tree | e82e132651062ce1771ba037bb65383a2d7dcd95 | |
parent | d0a9bde4d713c3c2335083369d30fdad88f49f04 (diff) | |
parent | 2384d87ca69894f0569219d16b5ffa96515ba834 (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.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; +}; |