blob: b81ca8d5b9a2c8aaf1eb7586a22e167859faaccf [file] [log] [blame]
// Special g++ Options: -fexceptions -g
// excess errors test - XFAIL a29k-*-* sparc64-*-elf arm-*-pe
class zeroset {
public:
~zeroset () { }
};
int main () {
zeroset a;
try {
;
} catch( zeroset ) {
}
}