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

10 lines
94 B
C++

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