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