diff options
Diffstat (limited to 'Zend/tests/bug74164.phpt')
-rw-r--r-- | Zend/tests/bug74164.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/tests/bug74164.phpt b/Zend/tests/bug74164.phpt index 354b2f51e0..b623dcb1db 100644 --- a/Zend/tests/bug74164.phpt +++ b/Zend/tests/bug74164.phpt @@ -6,7 +6,7 @@ Bug #74164 (PHP hangs when an invalid value is dynamically passed to typehinted namespace Foo; set_error_handler(function ($type, $msg) { - throw new \Exception($msg); + throw new \Exception($msg); }); call_user_func(function (array &$ref) {var_dump("xxx");}, 'not_an_array_variable'); |