TypeScript/tests/baselines/reference/topLevelAwait.2(module=es2022).symbols
Kagami Sascha Rosylight 2161e1852f
Add module: es2022 (#44656)
Closes #44653
2021-09-29 17:44:57 -07:00

12 lines
475 B
Plaintext

=== tests/cases/conformance/externalModules/topLevelAwait.2.ts ===
declare namespace foo { const await: any; }
>foo : Symbol(foo, Decl(topLevelAwait.2.ts, 0, 0))
>await : Symbol(await, Decl(topLevelAwait.2.ts, 0, 29))
// await allowed in import=namespace when not a module
import await = foo.await;
>await : Symbol(await, Decl(topLevelAwait.2.ts, 0, 43))
>foo : Symbol(foo, Decl(topLevelAwait.2.ts, 0, 0))
>await : Symbol(await, Decl(topLevelAwait.2.ts, 0, 29))