php-src/Zend/tests/gc_018.phpt
2008-01-22 09:27:48 +00:00

14 lines
169 B
PHP

--TEST--
GC 018: GC detach with assign
--FILE--
<?php
$a = array(array());
$a[0][0] =& $a[0];
$a = 1;
var_dump(gc_collect_cycles());
echo "ok\n"
?>
--EXPECT--
int(1)
ok