TypeScript/tests/baselines/reference/duplicateVarAndImport.types

14 lines
186 B
Plaintext
Raw Normal View History

2014-08-28 01:58:31 +02:00
=== tests/cases/compiler/duplicateVarAndImport.ts ===
// no error since module is not instantiated
var a;
>a : any
2014-08-28 01:58:31 +02:00
module M { }
>M : any
2014-08-28 01:58:31 +02:00
import a = M;
>a : any
>M : any
2014-08-28 01:58:31 +02:00