blob: 4127402d09e6d561fd3f90979ee80541ad156351 [file] [log] [blame]
// Special g++ Options: -fexceptions
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*
int fail = 0;
struct A {
A () { a = 'a'; b = 'b'; c = 'c'; }
~ A () {
if ( a != 'a' ) fail = 1;
if ( b != 'b' ) fail = 1;
if ( c != 'c' ) fail = 1;
}
char a, b, c;
};
void some_init () { throw 1; }
struct C : A {
C () { some_init (); }
};
int main () {
try {
C c;
} catch (int i) {
return 0;
}
return 1;
};