summaryrefslogtreecommitdiff
path: root/tests/headers/crtp.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/crtp.hpp')
-rw-r--r--tests/headers/crtp.hpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/headers/crtp.hpp b/tests/headers/crtp.hpp
deleted file mode 100644
index a5477c54..00000000
--- a/tests/headers/crtp.hpp
+++ /dev/null
@@ -1,12 +0,0 @@
-template<class T>
-class Base {};
-
-class Derived : public Base<Derived> {};
-
-template<class T>
-class BaseWithDestructor {
- ~BaseWithDestructor();
-};
-
-class DerivedFromBaseWithDestructor :
- public BaseWithDestructor<DerivedFromBaseWithDestructor> {};