summaryrefslogtreecommitdiff
path: root/tests/headers/struct_with_bitfields.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/struct_with_bitfields.h')
-rw-r--r--tests/headers/struct_with_bitfields.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/headers/struct_with_bitfields.h b/tests/headers/struct_with_bitfields.h
deleted file mode 100644
index 107fb136..00000000
--- a/tests/headers/struct_with_bitfields.h
+++ /dev/null
@@ -1,13 +0,0 @@
-// bindgen-flags: --no-unstable-rust
-struct bitfield {
- unsigned short
- a :1,
- b :1,
- c :1,
- :1,
- :2,
- d :2;
- int e;
- unsigned int f : 2;
- unsigned int g : 32;
-};