mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
df2db7fcea
Throwing an exception should count as an initialization for this purpose.
43 lines
683 B
PHP
43 lines
683 B
PHP
--TEST--
|
|
Bug #79657: "yield from" hangs when invalid value encountered
|
|
--FILE--
|
|
<?php
|
|
|
|
function throwException(): iterable
|
|
{
|
|
throw new Exception();
|
|
}
|
|
|
|
function loop(): iterable
|
|
{
|
|
$callbacks = [
|
|
function () {
|
|
yield 'first';
|
|
},
|
|
function () {
|
|
yield from throwException();
|
|
}
|
|
];
|
|
|
|
foreach ($callbacks as $callback) {
|
|
yield from $callback();
|
|
}
|
|
}
|
|
|
|
function get(string $first, int $second): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
get(...loop());
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Exception in %s:%d
|
|
Stack trace:
|
|
#0 %s(%d): throwException()
|
|
#1 %s(%d): {closure}()
|
|
#2 %s(%d): loop()
|
|
#3 {main}
|
|
thrown in %s on line %d
|