FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb133.C
blobe2b25f6ef08cf473e5727d1dd6ef481214771ccd
1 // Build don't link:
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) { // ERROR - parse error
13                 return 1;
14         }
15         return 0;
18