📄 Viewing: yield_from_non_iterable.phpt

--TEST--
Yield from non-iterable
--FILE--
<?php

function gen() {
    yield from new stdClass;
}

try {
    gen()->current();
} catch (Error $e) {
    echo $e->getMessage(), "\n";
}

?>
--EXPECT--
Can use "yield from" only with arrays and Traversables

🌑 DarkStealth — WP Plugin Edition

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