2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb31.C
blob1e3c8f02d16de477bc020984ddc53165bc81fa34
1 // { dg-do run  }
2 #include<iostream>
4 int main() {
5   try {
6     throw 1;
7   } catch(...) {
8    try {
9      throw;
10    } catch(int) {
11    }
12    try {
13      throw;
14    } catch(int) {
15    }
16   }
17   return 0;