blob: 7dbe788f4e17adb37bc1f864fe94e6867f7282e5 [file] [log] [blame]
// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
#include <string>
void bar();
void test() {
try {
bar();
} catch (std::string) {}
}