Files
php-src/ext/reflection/tests/ReflectionClass_getMethods_004.phpt
Dmitry Stogov 088e5677fb Fix memory leak
This fixes oss-fuzz #47791
2022-06-06 11:35:01 +03:00

12 lines
146 B
PHP

--TEST--
ReflectionClass::getMethods()
--FILE--
<?php
$l = function() {};
$o=new ReflectionObject($l);
$o->getMethods(2);
?>
DONE
--EXPECT--
DONE