summaryrefslogtreecommitdiff
path: root/tests/headers/issue-674-2.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/issue-674-2.hpp')
-rw-r--r--tests/headers/issue-674-2.hpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/headers/issue-674-2.hpp b/tests/headers/issue-674-2.hpp
deleted file mode 100644
index 86d2b648..00000000
--- a/tests/headers/issue-674-2.hpp
+++ /dev/null
@@ -1,15 +0,0 @@
-// bindgen-flags: --enable-cxx-namespaces --allowlist-type StaticRefPtr --opaque-type 'JS::Rooted' -- -std=c++14
-
-namespace JS {
-template <typename T> class Rooted { using ElementType = T; };
-}
-class c {
- JS::Rooted<int> b;
-};
-class B {
- c a;
-};
-template <class> class StaticRefPtr {};
-struct {
- StaticRefPtr<B> d;
-} e;