test_instantiate1.cpp 466 B

12345678910111213141516171819202122
  1. // Copyright John Maddock 2006.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #define TEST_COMPLEX
  6. #include "compile_test/instantiate.hpp"
  7. extern void other_test();
  8. int main(int argc, char* [])
  9. {
  10. if(argc > 10000)
  11. {
  12. instantiate(double(0));
  13. instantiate_mixed(double(0));
  14. other_test();
  15. }
  16. }