summaryrefslogtreecommitdiff
path: root/tests/headers/forward-inherit-struct-with-fields.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/forward-inherit-struct-with-fields.hpp')
-rw-r--r--tests/headers/forward-inherit-struct-with-fields.hpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/headers/forward-inherit-struct-with-fields.hpp b/tests/headers/forward-inherit-struct-with-fields.hpp
deleted file mode 100644
index 437fff5d..00000000
--- a/tests/headers/forward-inherit-struct-with-fields.hpp
+++ /dev/null
@@ -1,8 +0,0 @@
-template <typename> class Rooted;
-namespace js {
- template <typename T> class RootedBase {
- T* foo;
- Rooted<T>* next;
- };
-}
-template <typename T> class Rooted : js::RootedBase<T> {};