diff options
Diffstat (limited to 'tests/headers/issue-645-cannot-find-type-T-in-this-scope.hpp')
-rw-r--r-- | tests/headers/issue-645-cannot-find-type-T-in-this-scope.hpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/headers/issue-645-cannot-find-type-T-in-this-scope.hpp b/tests/headers/issue-645-cannot-find-type-T-in-this-scope.hpp deleted file mode 100644 index 8e07a8a0..00000000 --- a/tests/headers/issue-645-cannot-find-type-T-in-this-scope.hpp +++ /dev/null @@ -1,9 +0,0 @@ -// bindgen-flags: --blocklist-type RefPtr --raw-line "#[derive(Clone, Copy, Debug)] pub struct RefPtr<T>(T);" --allowlist-type "HasRefPtr" -- -std=c++14 - -template <class> class RefPtr {}; - -template <typename T> -class HasRefPtr { - typedef T TypedefOfT; - RefPtr<TypedefOfT> refptr_member; -}; |