diff options
Diffstat (limited to 'tests/headers/issue-662-part-2.hpp')
-rw-r--r-- | tests/headers/issue-662-part-2.hpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/headers/issue-662-part-2.hpp b/tests/headers/issue-662-part-2.hpp deleted file mode 100644 index 1330c342..00000000 --- a/tests/headers/issue-662-part-2.hpp +++ /dev/null @@ -1,11 +0,0 @@ -// bindgen-flags: --blocklist-type RefPtr --raw-line '#[derive(Clone, Copy, Debug)] pub struct RefPtr<T>(T);' -- --std=c++14 - -// This is pretty much the same as the other issue 662 test case, but this time -// we blocklist RefPtr to exercise the instantiation-of-a-blocklisted-template -// path in the template analysis. - -template <class> class RefPtr {}; -template <class T> class nsMainThreadPtrHolder { T a; }; -template <class U> class nsMainThreadPtrHandle { - RefPtr<nsMainThreadPtrHolder<U>> mPtr; -}; |