2
0
mirror of https://github.com/boostorg/test.git synced 2026-01-26 19:12:10 +00:00
Files
test/doc/v2/examples/example25.cpp
Gennadiy Rozental ced5d625dc after review
2014-11-18 00:12:29 -05:00

13 lines
225 B
C++
Executable File

//[example_code
#include <stdexcept>
#include <boost/test/included/prg_exec_monitor.hpp>
int foo() { throw std::runtime_error( "big trouble" ); }
int cpp_main( int, char* [] ) // note the name
{
foo();
return 0;
}
//]