diff --git a/test/common/init.hpp b/test/common/init.hpp index addc992c..f1007b0c 100644 --- a/test/common/init.hpp +++ b/test/common/init.hpp @@ -5,6 +5,21 @@ * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ +/* + * Default construct test when possible + */ + +template +struct default_construct +{ + static void test () + { + VC default_constuct; + initialize_vector (default_constuct); + std::cout << "default construct = " << default_constuct << std::endl; + } +}; + /* * Initialise test values in vector/matrix */