yield_closure.phpt 195 B

1234567891011121314151617
  1. --TEST--
  2. Generator shouldn't crash if last yielded value is a closure
  3. --FILE--
  4. <?php
  5. function gen() {
  6. yield function() {};
  7. }
  8. $gen = gen();
  9. $gen->next();
  10. echo "Done!";
  11. ?>
  12. --EXPECT--
  13. Done!