mirror of
https://github.com/php/php-src.git
synced 2024-12-18 22:41:20 +08:00
20 lines
216 B
Plaintext
20 lines
216 B
Plaintext
|
--TEST--
|
||
|
Bug #68775: yield in a function argument crashes or loops indefinitely
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
function a($x) {
|
||
|
var_dump($x);
|
||
|
}
|
||
|
|
||
|
function gen() {
|
||
|
a(yield);
|
||
|
}
|
||
|
|
||
|
$g = gen();
|
||
|
$g->send(1);
|
||
|
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
int(1)
|