xref: /PHP-5.5/Zend/tests/gc_025.phpt (revision e24fff2d)
1--TEST--
2GC 025: Automatic GC on request shutdown
3--INI--
4zend.enable_gc=1
5--FILE--
6<?php
7$a = array(array());
8$a[0][0] =& $a[0];
9unset($a);
10echo "ok\n"
11?>
12--EXPECT--
13ok
14