diff options
Diffstat (limited to 'libbindgen/tests/headers/const_tparam.hpp')
-rw-r--r-- | libbindgen/tests/headers/const_tparam.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libbindgen/tests/headers/const_tparam.hpp b/libbindgen/tests/headers/const_tparam.hpp new file mode 100644 index 00000000..05f26e4a --- /dev/null +++ b/libbindgen/tests/headers/const_tparam.hpp @@ -0,0 +1,5 @@ +template<typename T> +class C { + const T* const foo; + const T* bar; +}; |