diff options
Diffstat (limited to 'tests/headers/union_template_1_0.hpp')
-rw-r--r-- | tests/headers/union_template_1_0.hpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/headers/union_template_1_0.hpp b/tests/headers/union_template_1_0.hpp deleted file mode 100644 index 18e3d74a..00000000 --- a/tests/headers/union_template_1_0.hpp +++ /dev/null @@ -1,21 +0,0 @@ -// bindgen-flags: --rust-target 1.0 --with-derive-hash --with-derive-partialeq --with-derive-eq - -template<typename T> -struct NastyStruct { - bool mIsSome; - union { - void* mFoo; - unsigned long mDummy; - } mStorage; - - union { - short wat; - int* wut; - }; -}; - -template<typename T> -union Whatever { - void* mTPtr; - int mInt; -}; |