hanchenye-llvm-project/llvm/test/Regression/C++Frontend/2003-11-04-CatchLabelName.cpp

10 lines
94 B
C++
Raw Normal View History

2003-11-05 09:36:49 +08:00
#include <string>
void bar();
void test() {
try {
bar();
} catch (std::string) {}
}