summaryrefslogtreecommitdiff
path: root/tests/headers/derive-partialeq-and-blocklist.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/derive-partialeq-and-blocklist.hpp')
-rw-r--r--tests/headers/derive-partialeq-and-blocklist.hpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/headers/derive-partialeq-and-blocklist.hpp b/tests/headers/derive-partialeq-and-blocklist.hpp
deleted file mode 100644
index 953d0677..00000000
--- a/tests/headers/derive-partialeq-and-blocklist.hpp
+++ /dev/null
@@ -1,11 +0,0 @@
-// bindgen-flags: --with-derive-partialeq --blocklist-type BlocklistMe --raw-line 'pub struct BlocklistMe(u8);'
-
-struct BlocklistMe {};
-
-/**
- * Because this type contains a blocklisted type, it should not derive
- * PartialEq.
- */
-struct ShouldNotDerivePartialEq {
- BlocklistMe a;
-};