2018-01-09 15:36:42 +01:00

8 lines
88 B
JavaScript

async function f() {
await 1;
async function* g() {
await 2;
yield 3;
}
}