You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expected behavior:
No error thrown. (If renaming this file to .js extension, it would be accepted by runtimes that enables top-level await e.g. Deno, indicating this is accepted by engines like V8)
Actual behavior:
error TS2304: Cannot find name 'await'.
► file:///Users/kun/Projects/Deno/test/tla.ts:5:11
5 const v = await (1);
~~~~~