TypeScript/tests/baselines/reference/parserForOfStatement23.types

14 lines
256 B
Plaintext

=== tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement23.ts ===
async function foo(x: any) {
>foo : (x: any) => Promise<void>
>x : any
var async;
>async : any
for await (async of x) {}
>async : any
>x : any
}