summaryrefslogtreecommitdiff
path: root/tests/headers/issue-447.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/issue-447.hpp')
-rw-r--r--tests/headers/issue-447.hpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/headers/issue-447.hpp b/tests/headers/issue-447.hpp
deleted file mode 100644
index 43765fa9..00000000
--- a/tests/headers/issue-447.hpp
+++ /dev/null
@@ -1,27 +0,0 @@
-// bindgen-flags: --enable-cxx-namespaces --allowlist-type JSAutoCompartment -- -std=c++11
-
-namespace mozilla {
- template <typename> class a {};
- namespace detail {
- class GuardObjectNotifier {};
- struct b;
- }
- class c {
- typedef detail::b d;
- };
-}
-namespace js {
- class D {
- mozilla::a<mozilla::c> e;
- };
-}
-struct f {
- js::D g;
-};
-namespace js {
- struct ContextFriendFields : f {};
-}
-class JSAutoCompartment {
-public:
- JSAutoCompartment(mozilla::detail::GuardObjectNotifier);
-};