diff options
Diffstat (limited to 'tests/headers/template.hpp')
-rw-r--r-- | tests/headers/template.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/headers/template.hpp b/tests/headers/template.hpp new file mode 100644 index 00000000..80825b74 --- /dev/null +++ b/tests/headers/template.hpp @@ -0,0 +1,5 @@ +template<typename T> class Foo { + T m_member; +}; + +void bar(Foo<int> foo); |