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 
6 #define TEST_COMPLEX
7 
8 #include "compile_test/instantiate.hpp"
9 
10 extern void other_test();
11 
main(int argc,char * [])12 int main(int argc, char* [])
13 {
14    if(argc > 10000)
15    {
16       instantiate(double(0));
17       instantiate_mixed(double(0));
18       other_test();
19    }
20 }
21 
22 
23