summaryrefslogtreecommitdiff
path: root/libbindgen/tests/headers/constructor-tp.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'libbindgen/tests/headers/constructor-tp.hpp')
-rw-r--r--libbindgen/tests/headers/constructor-tp.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/libbindgen/tests/headers/constructor-tp.hpp b/libbindgen/tests/headers/constructor-tp.hpp
index 7a420413..6e55ea78 100644
--- a/libbindgen/tests/headers/constructor-tp.hpp
+++ b/libbindgen/tests/headers/constructor-tp.hpp
@@ -3,8 +3,15 @@ template<typename T>
class Foo {
public:
Foo();
+
+ void doBaz();
};
+template<typename T>
+inline void
+Foo<T>::doBaz() {
+}
+
class Bar {
public:
Bar();