1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/opcache/tests/bug78034.phpt
Christoph M. Becker 52a0630cd4 Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3:
  Add missing SKIPIFs
2019-07-01 18:13:52 +02:00

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===