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