php-src/Zend/tests/bug71724.phpt

20 lines
175 B
Plaintext
Raw Normal View History

2016-03-06 20:38:21 +00:00
--TEST--
Bug #71724: yield from does not count EOLs
--FILE--
<?php
function test()
{
yield
from [__LINE__];
}
var_dump(test()->current());
?>
--EXPECT--
int(10)