TypeScript/tests/baselines/reference/duplicateVarAndImport.types
2015-04-15 16:44:20 -07:00

14 lines
186 B
Plaintext

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