bug52060.phpt 212 B

123456789101112
  1. --TEST--
  2. Bug #52060 (Memory leak when passing a closure to method_exists())
  3. --FILE--
  4. <?php
  5. $closure = function($a) { echo $a; };
  6. var_dump(method_exists($closure, '__invoke')); // true
  7. ?>
  8. --EXPECT--
  9. bool(true)