summaryrefslogtreecommitdiff
path: root/Zend/tests/try/try_catch_finally_007.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/try/try_catch_finally_007.phpt')
-rw-r--r--Zend/tests/try/try_catch_finally_007.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/try/try_catch_finally_007.phpt b/Zend/tests/try/try_catch_finally_007.phpt
index ad33c68131..df8db61c90 100644
--- a/Zend/tests/try/try_catch_finally_007.phpt
+++ b/Zend/tests/try/try_catch_finally_007.phpt
@@ -16,10 +16,10 @@ function foo($ret = FALSE) {
} finally {
var_dump("finally1");
throw new Exception("exception");
- }
+ }
} catch (Exception $e) {
goto local;
-local:
+local:
var_dump("catched");
if ($ret) return "return";
} finally {