1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/Zend/tests/bug69376.phpt
2015-04-07 02:35:52 +03:00

28 lines
263 B
PHP

--TEST--
Bug #69376 (Wrong ref counting)
--FILE--
<?php
function &test() {
$var = array();
$var[] =& $var;
return $var;
};
$a = test();
$b = $a;
$b[0] = 123;
print_r($a);
print_r($b);
?>
--EXPECT--
Array
(
[0] => 123
)
Array
(
[0] => 123
)