diff options
Diffstat (limited to 'tests/headers/template-param-usage-10.hpp')
-rw-r--r-- | tests/headers/template-param-usage-10.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/headers/template-param-usage-10.hpp b/tests/headers/template-param-usage-10.hpp new file mode 100644 index 00000000..a6f3ccd8 --- /dev/null +++ b/tests/headers/template-param-usage-10.hpp @@ -0,0 +1,14 @@ +// 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; +}; |