OSDN Git Service

Initial revision
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.mike / eh53.C
1 // Special g++ Options: -fexceptions -g
2 // excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*
3
4 class zeroset {
5 public:
6   ~zeroset () { }
7 };
8
9 int main () {
10   zeroset a;
11   try {
12     ;
13   } catch( zeroset ) {
14   }
15 }