aboutsummaryrefslogtreecommitdiff
path: root/test/C++Frontend/2003-08-20-ExceptionFail.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-20 20:36:09 +0000
committerChris Lattner <sabre@nondot.org>2003-08-20 20:36:09 +0000
commitcd5e5a6a2a1f094dbb3380f74e76c5f94a330d2e (patch)
treeb3d7d1a67e8dcd609c12cadf3138cb4ec22570c9 /test/C++Frontend/2003-08-20-ExceptionFail.cpp
parent2c3394ac39d9667d8d5c136d4d26ef7871427893 (diff)
Simplify testcase even more
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7991 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/C++Frontend/2003-08-20-ExceptionFail.cpp')
-rw-r--r--test/C++Frontend/2003-08-20-ExceptionFail.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/C++Frontend/2003-08-20-ExceptionFail.cpp b/test/C++Frontend/2003-08-20-ExceptionFail.cpp
index dfad1bff8e..606a2f27d6 100644
--- a/test/C++Frontend/2003-08-20-ExceptionFail.cpp
+++ b/test/C++Frontend/2003-08-20-ExceptionFail.cpp
@@ -5,9 +5,6 @@ void bar() {
~local() { foo(); }
} local_obj;
- try {
- foo();
- } catch(...) {
- }
+ foo();
}