blob: 8acf88ddbaf3e569ad34849ed1d6e6c7b2b3fdc7 [file] [log] [blame]
Tanya Lattnerd13e0ae2004-11-06 22:29:57 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattner4dcf5e62003-11-05 01:36:49 +00003#include <string>
4
5void bar();
6
7void test() {
8 try {
9 bar();
10 } catch (std::string) {}
11}