diff options
Diffstat (limited to 'libbindgen/tests/headers/inner_template_self.hpp')
-rw-r--r-- | libbindgen/tests/headers/inner_template_self.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libbindgen/tests/headers/inner_template_self.hpp b/libbindgen/tests/headers/inner_template_self.hpp new file mode 100644 index 00000000..1ae5af06 --- /dev/null +++ b/libbindgen/tests/headers/inner_template_self.hpp @@ -0,0 +1,10 @@ + +template <typename T> +class LinkedList { + LinkedList<T>* next; + LinkedList* prev; +}; + +class InstantiateIt { + LinkedList<int> m_list; +}; |