TypeScript/tests/cases/conformance/externalModules/topLevelAwaitErrors.10.ts

11 lines
238 B
TypeScript
Raw Normal View History

// @target: esnext
// @module: esnext
// @filename: index.ts
// await disallowed in alias of named import
import { await as await } from "./other";
// @filename: other.ts
declare const _await: any;
export { _await as await };