diff options
Diffstat (limited to 'bindgen-tests/tests/headers/constructor-tp.hpp')
-rw-r--r-- | bindgen-tests/tests/headers/constructor-tp.hpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/bindgen-tests/tests/headers/constructor-tp.hpp b/bindgen-tests/tests/headers/constructor-tp.hpp new file mode 100644 index 00000000..6e55ea78 --- /dev/null +++ b/bindgen-tests/tests/headers/constructor-tp.hpp @@ -0,0 +1,26 @@ + +template<typename T> +class Foo { +public: + Foo(); + + void doBaz(); +}; + +template<typename T> +inline void +Foo<T>::doBaz() { +} + +class Bar { +public: + Bar(); +}; + +template<typename T> +Foo<T>::Foo() { +} + +inline +Bar::Bar() { +} |