blob: 871da9f138eb65bd1708a282e9c0f59eb339d6ad [file] [log] [blame]
//@ runDefault
function shouldBe(actual, expected) {
if (actual !== expected)
throw new Error('bad value: ' + actual);
}
(function thingy() {
function bar()
{
return bar.caller;
}
async function* foo()
{
shouldBe(bar(), null);
}
foo().next();
})();