summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/only_bitfields.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'bindgen-tests/tests/headers/only_bitfields.hpp')
-rw-r--r--bindgen-tests/tests/headers/only_bitfields.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/bindgen-tests/tests/headers/only_bitfields.hpp b/bindgen-tests/tests/headers/only_bitfields.hpp
new file mode 100644
index 00000000..793bc66b
--- /dev/null
+++ b/bindgen-tests/tests/headers/only_bitfields.hpp
@@ -0,0 +1,4 @@
+class C {
+ bool a: 1;
+ bool b: 7;
+};