--TEST-- Yield from does not leave a dangling send target --FILE-- send(new stdClass); function gen2() { $x = yield; yield from [1, 2, 3]; } $gen = gen2(); $gen->send(new stdClass); $gen->send(new stdClass); ?> ===DONE=== --EXPECT-- ===DONE===