rt_gccstream/gcc/testsuite/g++.dg/eh/throw1.C

10 lines
91 B
C

class S
{
public:
S(){}
};
int foo(char* m1) {
throw (m1 ? S() : S());
}