blob: 1a18af5b4c8588ced704433c976338d5d61e4730 [file] [log] [blame]
#include<iostream.h>
int main() {
try {
throw 1;
} catch(...) {
try {
throw;
} catch(int) {
}
try {
throw;
} catch(int) {
}
}
return 0;
}