New testcase

llvm-svn: 9718
This commit is contained in:
Chris Lattner 2003-11-05 01:36:49 +00:00
parent 9e2193fbb9
commit c6ba8bc617

View File

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