TypeScript/tests/baselines/reference/duplicateVarAndImport.types
2014-08-28 12:40:58 -07:00

14 lines
194 B
Plaintext

=== 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