diff options
Diffstat (limited to 'tests/headers/class_static_const.hpp')
-rw-r--r-- | tests/headers/class_static_const.hpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/headers/class_static_const.hpp b/tests/headers/class_static_const.hpp deleted file mode 100644 index 3e320edc..00000000 --- a/tests/headers/class_static_const.hpp +++ /dev/null @@ -1,9 +0,0 @@ -// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq -using int32_t = int; -typedef unsigned int uint32_t; - -class A { - static const int a = 0; - static const int32_t b = 077; - static const uint32_t c = 0xff; -}; |