diff options
Diffstat (limited to 'tests/headers/union_with_nesting_1_0.h')
-rw-r--r-- | tests/headers/union_with_nesting_1_0.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/headers/union_with_nesting_1_0.h b/tests/headers/union_with_nesting_1_0.h deleted file mode 100644 index 3cdb7238..00000000 --- a/tests/headers/union_with_nesting_1_0.h +++ /dev/null @@ -1,16 +0,0 @@ -// bindgen-flags: --rust-target 1.0 --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; - }; - }; -}; |