summaryrefslogtreecommitdiff
path: root/tests/headers/union_with_nesting.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/union_with_nesting.h')
-rw-r--r--tests/headers/union_with_nesting.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/headers/union_with_nesting.h b/tests/headers/union_with_nesting.h
deleted file mode 100644
index ae25244a..00000000
--- a/tests/headers/union_with_nesting.h
+++ /dev/null
@@ -1,16 +0,0 @@
-// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq
-//
-union foo {
- unsigned int a;
- struct {
- union {
- unsigned short b1;
- unsigned short b2;
- };
-
- union {
- unsigned short c1;
- unsigned short c2;
- };
- };
-};