921e5a0eb4
From-SVN: r14840
16 lines
230 B
C
16 lines
230 B
C
// Special g++ Options: -fexceptions -g
|
|
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*
|
|
|
|
class zeroset {
|
|
public:
|
|
~zeroset () { }
|
|
};
|
|
|
|
int main () {
|
|
zeroset a;
|
|
try {
|
|
;
|
|
} catch( zeroset ) {
|
|
}
|
|
}
|