llvm-6502/test/C++Frontend/2003-11-04-CatchLabelName.cpp

10 lines
94 B
C++
Raw Normal View History

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