TypeScript/tests/cases/conformance/async/es5/asyncAliasReturnType_es5.ts

7 lines
152 B
TypeScript

// @target: ES5
// @lib: es5,es2015.promise
// @noEmitHelpers: true
type PromiseAlias<T> = Promise<T>;
async function f(): PromiseAlias<void> {
}