New testcase

llvm-svn: 9718
This commit is contained in:
Chris Lattner 2003-11-05 01:36:49 +00:00
parent 2b553e69d8
commit d4741c5ee9
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
#include <string>
void bar();
void test() {
try {
bar();
} catch (std::string) {}
}