// S : tags min c++ $TAGS // S : expect --result error --symbol __terminate // S : cc -o test.bc $CC_OPT $file // S : verify $V_OPT test.bc #include /* EXPECT: --result error --symbol __terminate */ void foo() { throw 4; } int main() { try { foo(); } catch ( long ) { assert( 0 ); } assert( 0 ); }