| Current Path : /hdd/hdd12/install/php/php-7.4.32/Zend/tests/ |
| Current File : //hdd/hdd12/install/php/php-7.4.32/Zend/tests/bug71724.phpt |
--TEST--
Bug #71724: yield from does not count EOLs
--FILE--
<?php
function test()
{
yield
from [__LINE__];
}
var_dump(test()->current());
?>
--EXPECT--
int(10)