blob: 1646f024db4921ef5cf7d7628c6a55723cb6c629 [file] [log] [blame]
Chris Lattner4dcf5e62003-11-05 01:36:49 +00001#include <string>
2
3void bar();
4
5void test() {
6 try {
7 bar();
8 } catch (std::string) {}
9}