New testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8113 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-08-24 12:30:51 +00:00
parent a182d2f896
commit 0cbe8a7d99

View File

@ -0,0 +1,11 @@
// This testcase doesn't actually DO any EH
static void foo() {}
int main() {
try {
foo();
return 0;
} catch(...) {
return 1;
}
}