TypeScript/tests/baselines/reference/duplicateVarAndImport.types
2014-08-27 16:58:31 -07:00

13 lines
180 B
Text

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