closure_063.phpt 174 B

123456789101112
  1. --TEST--
  2. Closure::bindTo leaks with "fake" closure
  3. --FILE--
  4. <?php
  5. function foo(){
  6. static $y;
  7. }
  8. Closure::fromCallable('foo')->bindTo(new stdClass);
  9. ?>
  10. DONE
  11. --EXPECT--
  12. DONE