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