diff options
Diffstat (limited to 'Zend/tests/bug61011.phpt')
-rw-r--r-- | Zend/tests/bug61011.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/bug61011.phpt b/Zend/tests/bug61011.phpt index 1e91a55078..dc0aca64f8 100644 --- a/Zend/tests/bug61011.phpt +++ b/Zend/tests/bug61011.phpt @@ -6,7 +6,7 @@ spl_autoload_register(function ($name) { throw new Exception($name); }); -try { +try { echo AAA::$a; //zend_fetch_var_address_helper } catch (Exception $e) { try { @@ -22,7 +22,7 @@ try { isset(AAAA::$a); // ZEND_ISSET_ISEMPTY_VAR } catch (Exception $e) { try { - $a = array("AAA", "foo"); + $a = array("AAA", "foo"); $a(); //ZEND_INIT_FCALL_BY_NAME } catch (Exception $e) { } |