summaryrefslogtreecommitdiff
path: root/tests/headers/inner_template_self.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/inner_template_self.hpp')
-rw-r--r--tests/headers/inner_template_self.hpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/headers/inner_template_self.hpp b/tests/headers/inner_template_self.hpp
deleted file mode 100644
index 1ae5af06..00000000
--- a/tests/headers/inner_template_self.hpp
+++ /dev/null
@@ -1,10 +0,0 @@
-
-template <typename T>
-class LinkedList {
- LinkedList<T>* next;
- LinkedList* prev;
-};
-
-class InstantiateIt {
- LinkedList<int> m_list;
-};