blob: 1e3c8f02d16de477bc020984ddc53165bc81fa34 [file] [log] [blame]
// { dg-do run }
#include<iostream>
int main() {
try {
throw 1;
} catch(...) {
try {
throw;
} catch(int) {
}
try {
throw;
} catch(int) {
}
}
return 0;
}