summaryrefslogtreecommitdiff
path: root/tests/headers/union_with_anon_struct_bitfield.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/union_with_anon_struct_bitfield.h')
-rw-r--r--tests/headers/union_with_anon_struct_bitfield.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/headers/union_with_anon_struct_bitfield.h b/tests/headers/union_with_anon_struct_bitfield.h
deleted file mode 100644
index bbb1ef41..00000000
--- a/tests/headers/union_with_anon_struct_bitfield.h
+++ /dev/null
@@ -1,9 +0,0 @@
-// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq
-//
-union foo {
- int a;
- struct {
- int b : 7;
- int c : 25;
- };
-};