summaryrefslogtreecommitdiff
path: root/tests/headers/template-fun-ty.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/template-fun-ty.hpp')
-rw-r--r--tests/headers/template-fun-ty.hpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/headers/template-fun-ty.hpp b/tests/headers/template-fun-ty.hpp
deleted file mode 100644
index bb9d23cf..00000000
--- a/tests/headers/template-fun-ty.hpp
+++ /dev/null
@@ -1,17 +0,0 @@
-// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq
-template <typename T>
-class Foo
-{
- typedef T (FunctionPtr)();
-};
-
-template<typename T>
-class RefPtr {
- template<typename R, typename... Args>
- class Proxy {
- typedef R (T::*member_function)(Args...);
- };
-};
-
-template<typename T>
-using Returner = T(*)();