new testcase
[oota-llvm.git] / test / C++Frontend / 2003-08-20-ExceptionFail.cpp
1 void foo();
2
3 void bar() {
4   struct local {
5     ~local() { foo(); }
6   } local_obj;
7
8   try {
9     foo();
10   } catch(...) {
11   }
12 }
13