New testcase
[oota-llvm.git] / test / C++Frontend / 2003-11-04-CatchLabelName.cpp
1 #include <string>
2
3 void bar();
4
5 void test() {
6   try {
7     bar();
8   } catch (std::string) {}
9 }