summaryrefslogtreecommitdiff
path: root/tests/headers/issue-446.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/issue-446.hpp')
-rw-r--r--tests/headers/issue-446.hpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/headers/issue-446.hpp b/tests/headers/issue-446.hpp
deleted file mode 100644
index 2e09c274..00000000
--- a/tests/headers/issue-446.hpp
+++ /dev/null
@@ -1,11 +0,0 @@
-// bindgen-flags: -- -std=c++14
-
-template <typename Elem>
-class List {
- List<Elem> *next;
-};
-
-template <typename GcThing>
-class PersistentRooted {
- List<PersistentRooted<GcThing>> root_list;
-};