1234567891011121314151617181920212223 |
- --TEST--
- Bug #78034: "pecl" tool fails with abort assertion in zend_ssa.c
- --EXTENSIONS--
- opcache
- --FILE--
- <?php
- function &ref() {}
- class Test {
- function method($bool) {
- if (!$bool) {
- $this->foo = &ref();
- }
- $this->foo = &ref();
- }
- }
- ?>
- ===DONE===
- --EXPECT--
- ===DONE===
|