diff options
Diffstat (limited to 'Zend/tests/bug70785.phpt')
-rw-r--r-- | Zend/tests/bug70785.phpt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Zend/tests/bug70785.phpt b/Zend/tests/bug70785.phpt index f48bc3cdb9..05b1b6afa0 100644 --- a/Zend/tests/bug70785.phpt +++ b/Zend/tests/bug70785.phpt @@ -4,19 +4,19 @@ Bug #70785 (Infinite loop due to exception during identical comparison) <?php set_error_handler(function($no, $msg) { - throw new Exception($msg); + throw new Exception($msg); }); try { - if ($a === null) { // ZEND_VM_SMART_BRANCH - undefined_function('Null'); - } + if ($a === null) { // ZEND_VM_SMART_BRANCH + undefined_function('Null'); + } } catch (Exception $e) { } try { - $c === 3; // ZEND_VM_NEXT_OPCODE - undefined_function(); + $c === 3; // ZEND_VM_NEXT_OPCODE + undefined_function(); } catch (Exception $e) { } ?> |