diff options
Diffstat (limited to 'test/FrontendC++/2003-11-04-CatchLabelName.cpp')
-rw-r--r-- | test/FrontendC++/2003-11-04-CatchLabelName.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/FrontendC++/2003-11-04-CatchLabelName.cpp b/test/FrontendC++/2003-11-04-CatchLabelName.cpp deleted file mode 100644 index 7dbe788..0000000 --- a/test/FrontendC++/2003-11-04-CatchLabelName.cpp +++ /dev/null @@ -1,11 +0,0 @@ -// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null - -#include <string> - -void bar(); - -void test() { - try { - bar(); - } catch (std::string) {} -} |