summaryrefslogtreecommitdiff
path: root/Zend/tests/gc_025.phpt
blob: 5ae652725757d5225cba43534d2b61c7117dca16 (plain)
1
2
3
4
5
6
7
8
9
10
11
--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