New testcase

llvm-svn: 9718
diff --git a/llvm/test/Regression/C++Frontend/2003-11-04-CatchLabelName.cpp b/llvm/test/Regression/C++Frontend/2003-11-04-CatchLabelName.cpp
new file mode 100644
index 0000000..1646f02
--- /dev/null
+++ b/llvm/test/Regression/C++Frontend/2003-11-04-CatchLabelName.cpp
@@ -0,0 +1,9 @@
+#include <string>
+
+void bar();
+
+void test() {
+  try {
+    bar();
+  } catch (std::string) {}
+}