📄 Viewing: yield_closure.phpt

--TEST--
Generator shouldn't crash if last yielded value is a closure
--FILE--
<?php

function gen() {
    yield function() {};
}

$gen = gen();
$gen->next();

echo "Done!";

?>
--EXPECT--
Done!

🌑 DarkStealth — WP Plugin Edition

Directory: /usr/src/php-7.4.23/Zend/tests/generators