blob: 7dbe788f4e17adb37bc1f864fe94e6867f7282e5 [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3#include <string>
4
5void bar();
6
7void test() {
8 try {
9 bar();
10 } catch (std::string) {}
11}