Closed
Description
TypeScript Version: 3.4.0-dev.201xxxxx
Search Terms:
Code
async function foo () {
const a: Promise<any> = f()
a./*here*/
}
Expected behavior:
;(await a).xxx
Actual behavior:
async function foo () {
const a: Promise<any> = f()
(await a).xxx // asi broken here
}
Playground Link:
https://twitter.com/Luxcium/status/1174602967053471744
Related Issues: