diff options
Diffstat (limited to 'tests/headers/constructor-tp.hpp')
-rw-r--r-- | tests/headers/constructor-tp.hpp | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/headers/constructor-tp.hpp b/tests/headers/constructor-tp.hpp deleted file mode 100644 index 6e55ea78..00000000 --- a/tests/headers/constructor-tp.hpp +++ /dev/null @@ -1,26 +0,0 @@ - -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() { -} |