summaryrefslogtreecommitdiff
path: root/tests/headers/class_with_dtor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/class_with_dtor.hpp')
-rw-r--r--tests/headers/class_with_dtor.hpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/headers/class_with_dtor.hpp b/tests/headers/class_with_dtor.hpp
deleted file mode 100644
index f52858a7..00000000
--- a/tests/headers/class_with_dtor.hpp
+++ /dev/null
@@ -1,14 +0,0 @@
-// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq
-
-
-template <typename T>
-class HandleWithDtor {
- T* ptr;
- ~HandleWithDtor() {}
-};
-
-typedef HandleWithDtor<int> HandleValue;
-
-class WithoutDtor {
- HandleValue shouldBeWithDtor;
-};