TypeScript/tests/cases/fourslash/codeFixReturnTypeInAsyncFunction6.ts

11 lines
291 B
TypeScript

/// <reference path='fourslash.ts' />
// @target: es2015
////async function fn(): undefined {}
verify.codeFix({
index: 0,
description: [ts.Diagnostics.Replace_0_with_Promise_1.message, "undefined", "undefined"],
newFileContent: `async function fn(): Promise<undefined> {}`
});