summaryrefslogtreecommitdiff
path: root/tests/headers/template-param-usage-10.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/template-param-usage-10.hpp')
-rw-r--r--tests/headers/template-param-usage-10.hpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/headers/template-param-usage-10.hpp b/tests/headers/template-param-usage-10.hpp
deleted file mode 100644
index a6f3ccd8..00000000
--- a/tests/headers/template-param-usage-10.hpp
+++ /dev/null
@@ -1,14 +0,0 @@
-// bindgen-flags: -- -std=c++14
-
-template <typename T, typename U, typename NeverUsed>
-class DoublyIndirectUsage {
- using Aliased = T;
- typedef U Typedefed;
-
- class IndirectUsage {
- Aliased member;
- Typedefed another;
- };
-
- IndirectUsage doubly_indirect;
-};