blob: 1646f024db4921ef5cf7d7628c6a55723cb6c629 [file] [log] [blame]
#include <string>
void bar();
void test() {
try {
bar();
} catch (std::string) {}
}