diff options
Diffstat (limited to 'Zend/tests/bug64966.phpt')
-rw-r--r-- | Zend/tests/bug64966.phpt | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Zend/tests/bug64966.phpt b/Zend/tests/bug64966.phpt index 329503e5af..0d610ce2ff 100644 --- a/Zend/tests/bug64966.phpt +++ b/Zend/tests/bug64966.phpt @@ -3,18 +3,18 @@ Bug #64966 (segfault in zend_do_fcall_common_helper_SPEC) --FILE-- <?php function test($func) { - try { - $a = $func(""); - } catch (Error $e) { - throw new Exception(); - } - return true; + try { + $a = $func(""); + } catch (Error $e) { + throw new Exception(); + } + return true; } class A { - public function b() { - test("strlen"); - test("iterator_apply"); - } + public function b() { + test("strlen"); + test("iterator_apply"); + } } $a = new A(); |