opnsense-src/test/FrontendC++/2003-11-04-CatchLabelName.cpp
2009-10-14 17:57:32 +00:00

11 lines
146 B
C++

// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
#include <string>
void bar();
void test() {
try {
bar();
} catch (std::string) {}
}