summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/template-param-usage-13.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'bindgen-tests/tests/headers/template-param-usage-13.hpp')
-rw-r--r--bindgen-tests/tests/headers/template-param-usage-13.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/bindgen-tests/tests/headers/template-param-usage-13.hpp b/bindgen-tests/tests/headers/template-param-usage-13.hpp
new file mode 100644
index 00000000..87db1a10
--- /dev/null
+++ b/bindgen-tests/tests/headers/template-param-usage-13.hpp
@@ -0,0 +1,11 @@
+// bindgen-flags: -- -std=c++14
+
+template <typename T>
+class BaseIgnoresT {
+ int x;
+};
+
+template <typename U>
+class CrtpUsesU : public BaseIgnoresT<CrtpUsesU<U>> {
+ U usage;
+};