TypeScript/tests/baselines/reference/duplicateVarAndImport.types
2014-08-15 14:37:48 -07:00

14 lines
184 B
Plaintext

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