summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/class_static.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'bindgen-tests/tests/headers/class_static.hpp')
-rw-r--r--bindgen-tests/tests/headers/class_static.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/bindgen-tests/tests/headers/class_static.hpp b/bindgen-tests/tests/headers/class_static.hpp
new file mode 100644
index 00000000..d8f9be6d
--- /dev/null
+++ b/bindgen-tests/tests/headers/class_static.hpp
@@ -0,0 +1,8 @@
+// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq
+class MyClass {
+public:
+ static const int* example;
+ static const int* example_check_no_collision;
+};
+
+static const int* example_check_no_collision;