summaryrefslogtreecommitdiff
path: root/tests/headers/derive-partialeq-union.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/derive-partialeq-union.hpp')
-rw-r--r--tests/headers/derive-partialeq-union.hpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/headers/derive-partialeq-union.hpp b/tests/headers/derive-partialeq-union.hpp
deleted file mode 100644
index e2081a01..00000000
--- a/tests/headers/derive-partialeq-union.hpp
+++ /dev/null
@@ -1,7 +0,0 @@
-// bindgen-flags: --with-derive-partialeq --impl-partialeq
-
-/// Deriving PartialEq for rust unions is not supported.
-union ShouldNotDerivePartialEq {
- char a;
- int b;
-};