=== tests/cases/compiler/duplicateVarAndImport.ts === // no error since module is not instantiated var a; >a : any module M { } >M : unknown import a = M; >a : any >M : unknown