blob: 0a250def4287c5df304a9a9ef4ad18aaa9f2989d [file]
<?php
function gg() {
yield 1;
yield from new ArrayIterator([2, 3, 4]);
yield 5;
}