### Description The following code: ```php <?php class It implements IteratorAggregate { public function getIterator(): Generator { yield ""; Fiber::suspend(); } } function g() { yield from new It(); } function gen($gen) { yield from $gen; } $a = g(); $b = gen($a); $fiber = new Fiber(function () use ($b) { $b->next(); }); $fiber->start(); while ($a->valid()) { $a->next(); } ``` Resulted in this output: ``` Segmentation fault (core dumped) ``` ### PHP Version https://github.com/php/php-src/commit/16b2fc41a3cf3871d5481c1efc2e16ac99a2890e ### Operating System _No response_