diff options
Diffstat (limited to 'tests/headers/only_bitfields.hpp')
-rw-r--r-- | tests/headers/only_bitfields.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/headers/only_bitfields.hpp b/tests/headers/only_bitfields.hpp new file mode 100644 index 00000000..48b401b6 --- /dev/null +++ b/tests/headers/only_bitfields.hpp @@ -0,0 +1,5 @@ + +class C { + bool a: 1; + bool b: 7; +}; |