Annotation of embedaddon/php/ext/spl/tests/bug46115.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Bug #46115 (Memory leak when calling a method using Reflection)
                      3: --FILE--
                      4: <?php
                      5: $h = new RecursiveArrayIterator(array());
                      6: $x = new reflectionmethod('RecursiveArrayIterator', 'asort');
                      7: $z = $x->invoke($h);
                      8: ?>
                      9: DONE
                     10: --EXPECT--
                     11: DONE

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