diff options
Diffstat (limited to 'Zend/tests/bug48428.phpt')
-rw-r--r-- | Zend/tests/bug48428.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/bug48428.phpt b/Zend/tests/bug48428.phpt index ae9ac936a3..0cda84dea4 100644 --- a/Zend/tests/bug48428.phpt +++ b/Zend/tests/bug48428.phpt @@ -3,10 +3,10 @@ Bug #48428 (crash when exception is thrown while passing function arguments) --FILE-- <?php try { - function x() { throw new Exception("ERROR"); } - x(x()); + function x() { throw new Exception("ERROR"); } + x(x()); } catch(Exception $e) { - echo($e -> getMessage()); + echo($e -> getMessage()); } ?> --EXPECT-- |