Annotation of embedaddon/php/Zend/tests/gc_026.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: GC 026: Automatic GC on request shutdown (GC enabled at run-time)
                      3: --INI--
                      4: zend.enable_gc=0
                      5: --FILE--
                      6: <?php
                      7: gc_enable();
                      8: $a = array(array());
                      9: $a[0][0] =& $a[0];
                     10: unset($a);
                     11: echo "ok\n"
                     12: ?>
                     13: --EXPECT--
                     14: ok

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>