blob: 6b505d72a05d7bf4356cae66c7432998eddccbcc [file]
<?php
function g22() {
yield 1;
$g1result = yield from g11();
yield 4;
return $g1result;
}