diff options
Diffstat (limited to 'test/C++Frontend/2003-08-20-ExceptionFail.cpp')
-rw-r--r-- | test/C++Frontend/2003-08-20-ExceptionFail.cpp | 5 |
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(); } |