tests/cases/conformance/externalModules/index.ts(2,8): error TS1262: Identifier expected. 'await' is a reserved word at the top-level of a module.


==== tests/cases/conformance/externalModules/index.ts (1 errors) ====
    // await disallowed in default import
    import await from "./other";
           ~~~~~
!!! error TS1262: Identifier expected. 'await' is a reserved word at the top-level of a module.
    
==== tests/cases/conformance/externalModules/other.ts (0 errors) ====
    declare const _await: any;
    export default _await;
    