aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb31.C
blob: 1a18af5b4c8588ced704433c976338d5d61e4730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include<iostream.h>

int main() {
  try {
    throw 1;
  } catch(...) {
   try {
     throw;
   } catch(int) {
   }
   try {
     throw;
   } catch(int) {
   }
  }
  return 0;
}