1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
llvm-mirror/test/Regression/C++Frontend/2003-11-04-CatchLabelName.cpp
Chris Lattner c6ba8bc617 New testcase
llvm-svn: 9718
2003-11-05 01:36:49 +00:00

10 lines
94 B
C++

#include <string>
void bar();
void test() {
try {
bar();
} catch (std::string) {}
}