• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //  Copyright John Maddock 2009.
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 extern void compile_and_link_test();
7 
main(int argc,char * [])8 int main(int argc, char* /*argv*/ [])
9 {
10    if(argc > 1000)
11       compile_and_link_test(); // should never actually be called.
12    return 0;
13 }
14