summaryrefslogtreecommitdiff
path: root/tests/headers/derive-bitfield-method-same-name.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/derive-bitfield-method-same-name.hpp')
-rw-r--r--tests/headers/derive-bitfield-method-same-name.hpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/headers/derive-bitfield-method-same-name.hpp b/tests/headers/derive-bitfield-method-same-name.hpp
deleted file mode 100644
index ea9d801f..00000000
--- a/tests/headers/derive-bitfield-method-same-name.hpp
+++ /dev/null
@@ -1,13 +0,0 @@
-// bindgen-flags: --with-derive-partialeq --impl-partialeq --impl-debug --rust-target 1.40
-
-/// Because this struct have array larger than 32 items
-/// and --with-derive-partialeq --impl-partialeq --impl-debug is provided,
-/// this struct should manually implement `Debug` and `PartialEq`.
-struct Foo {
- int large[33];
- char type_ : 3;
- unsigned : 8;
- char type();
- void set_type_(char c);
- void set_type(char c);
-};