mirror of
https://github.com/php/php-src.git
synced 2026-03-26 01:02:25 +01:00
24 lines
340 B
PHP
24 lines
340 B
PHP
--TEST--
|
|
Bug #78034: "pecl" tool fails with abort assertion in zend_ssa.c
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
function &ref() {}
|
|
|
|
class Test {
|
|
function method($bool) {
|
|
if (!$bool) {
|
|
$this->foo = &ref();
|
|
}
|
|
|
|
$this->foo = &ref();
|
|
}
|
|
}
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|