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