bug46115.phpt 237 B

1234567891011
  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