TypeScript/tests/baselines/reference/asyncArrowFunction5_es6.types

7 lines
258 B
Plaintext

=== tests/cases/conformance/async/es6/asyncArrowFunction/asyncArrowFunction5_es6.ts ===
var foo = async (await): Promise<void> => {
>foo : (await: any) => Promise<void>
>async (await): Promise<void> => {} : (await: any) => Promise<void>
>await : any
}