Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.robertl / eb133b.C
blob9885031004b91e0c7ccc9cadd649b8e688cd3258
1 // { dg-do assemble  }
2 // Gives ICE 109
3 // From: Klaus-Georg Adams <Klaus-Georg.Adams@chemie.uni-karlsruhe.de> 
4 // Reported against EGCS snaps 98/06/28.
6 using namespace std;
8 int main()
10         try {
11         }
12         catch (bad_alloc) { // { dg-error "" }
13                 return 1;
14         }
15         return 0;
18