[llvm-commits] CVS: llvm/test/Regression/C++Frontend/2003-11-04-CatchLabelName.cpp
Chris Lattner
lattner at cs.uiuc.edu
Tue Nov 4 19:38:01 PST 2003
Changes in directory llvm/test/Regression/C++Frontend:
2003-11-04-CatchLabelName.cpp added (r1.1)
---
Log message:
New testcase
---
Diffs of the changes: (+9 -0)
Index: llvm/test/Regression/C++Frontend/2003-11-04-CatchLabelName.cpp
diff -c /dev/null llvm/test/Regression/C++Frontend/2003-11-04-CatchLabelName.cpp:1.1
*** /dev/null Tue Nov 4 19:36:59 2003
--- llvm/test/Regression/C++Frontend/2003-11-04-CatchLabelName.cpp Tue Nov 4 19:36:49 2003
***************
*** 0 ****
--- 1,9 ----
+ #include <string>
+
+ void bar();
+
+ void test() {
+ try {
+ bar();
+ } catch (std::string) {}
+ }
More information about the llvm-commits
mailing list