dangling_send_target.phpt 325 B

12345678910111213141516171819202122
  1. --TEST--
  2. Yield from does not leave a dangling send target
  3. --FILE--
  4. <?php
  5. function gen1() {
  6. yield from [yield];
  7. }
  8. $gen = gen1();
  9. $gen->send(new stdClass);
  10. function gen2() {
  11. $x = yield;
  12. yield from [1, 2, 3];
  13. }
  14. $gen = gen2();
  15. $gen->send(new stdClass);
  16. $gen->send(new stdClass);
  17. ?>
  18. ===DONE===
  19. --EXPECT--
  20. ===DONE===