summaryrefslogtreecommitdiff
path: root/Zend/tests/bug48428.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug48428.phpt')
-rw-r--r--Zend/tests/bug48428.phpt6
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--