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

14 lines
318 B
Plaintext

=== tests/cases/conformance/externalModules/index.ts ===
// await disallowed in un-alised named import
import { await } from "./other";
>await : any
=== tests/cases/conformance/externalModules/other.ts ===
declare const _await: any;
>_await : any
export { _await as await };
>_await : any
>await : any