1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 10:43:30 +02:00
Files
archived-php-src/Zend/tests/gc_025.phpt
T
2008-01-22 09:27:48 +00:00

12 lines
145 B
PHP

--TEST--
GC 025: Automatic GC on request shutdown
--FILE--
<?php
$a = array(array());
$a[0][0] =& $a[0];
unset($a);
echo "ok\n"
?>
--EXPECT--
ok