<!-- BUGS: Please use this template. --> <!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript --> <!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md --> <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 2.7.0-dev.201xxxxx **Code** ```ts function foo() { await/*1*/ bar(); } ``` **Expected behavior:** At 1, offers a code action that converts the innermost function to async: ```ts async function foo() { await bar(); } ``` **Actual behavior:** Error at 1 with no quick fix offered