new testcase

llvm-svn: 7989
This commit is contained in:
Chris Lattner 2003-08-20 20:24:09 +00:00
parent e1c787f2f5
commit 9ca74f1cfe
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
void foo();
void bar() {
struct local {
~local() { foo(); }
} local_obj;
try {
foo();
} catch(...) {
}
}