tests/cases/compiler/duplicateVarAndImport2.ts(4,1): error TS2440: Import declaration conflicts with local declaration of 'a'.


==== tests/cases/compiler/duplicateVarAndImport2.ts (1 errors) ====
    // error since module is instantiated
    var a;
    module M { export var x = 1; }
    import a = M;
    ~~~~~~~~~~~~~
!!! error TS2440: Import declaration conflicts with local declaration of 'a'.