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