update test
[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   foo();
9 }
10