// S : tags c++ $TAGS // S : expect --result valid // S : cc -o test.bc $CC_OPT $file // S : verify $V_OPT test.bc #include int main() { try { throw 5; } catch( int x ) { assert( x == 5 ); return 0; } assert( 0 ); return 0; }