(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.robertl/
eb31.C
// { dg-do run  }
#include<iostream>

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