TypeScript/tests/cases/conformance/async/es6/asyncAliasReturnType_es6.ts
2015-12-01 14:48:53 -08:00

6 lines
123 B
TypeScript

// @target: ES6
// @noEmitHelpers: true
type PromiseAlias<T> = Promise<T>;
async function f(): PromiseAlias<void> {
}