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