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

13 lines
533 B
Plaintext

=== tests/cases/conformance/externalModules/topLevelAwaitErrors.12.ts ===
export {};
declare namespace foo { const await: any; }
>foo : Symbol(foo, Decl(topLevelAwaitErrors.12.ts, 0, 10))
>await : Symbol(await, Decl(topLevelAwaitErrors.12.ts, 1, 29))
// await disallowed in import=namespace when in a module
import await = foo.await;
>await : Symbol(await, Decl(topLevelAwaitErrors.12.ts, 1, 43))
>foo : Symbol(foo, Decl(topLevelAwaitErrors.12.ts, 0, 10))
>await : Symbol(await, Decl(topLevelAwaitErrors.12.ts, 1, 29))