TypeScript/tests/baselines/reference/asyncArrowFunction1_es6.types
2015-05-06 17:33:58 -07:00

9 lines
242 B
Plaintext

=== tests/cases/conformance/async/es6/asyncArrowFunction/asyncArrowFunction1_es6.ts ===
var foo = async (): Promise<void> => {
>foo : () => Promise<void>
>async (): Promise<void> => {} : () => Promise<void>
>Promise : Promise<T>
};