TypeScript/tests/baselines/reference/topLevelAwait(module=system,target=es2015).types

10 lines
139 B
Plaintext

=== tests/cases/conformance/externalModules/topLevelAwait.ts ===
export const x = 1;
>x : 1
>1 : 1
await x;
>await x : 1
>x : 1