blob: 66c25a13f713fcc3d1af69fef12d0d7420598c7b [file] [log] [blame]
function*g(){ };
o = g();
o.next();
result = o.next();
assertEq(result.done, true);
assertEq(o.value, undefined);