mirror of
https://github.com/php/php-src.git
synced 2024-11-29 04:46:07 +08:00
12 lines
237 B
PHP
12 lines
237 B
PHP
--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
|