TypeScript/tests/baselines/reference/structuralTypeInDeclareFileForModule.types

11 lines
428 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/structuralTypeInDeclareFileForModule.ts ===
module M { export var x; }
2015-04-13 23:01:57 +02:00
>M : typeof M, Symbol(M, Decl(structuralTypeInDeclareFileForModule.ts, 0, 0))
>x : any, Symbol(x, Decl(structuralTypeInDeclareFileForModule.ts, 1, 21))
2014-08-15 23:33:16 +02:00
var m = M;
2015-04-13 23:01:57 +02:00
>m : typeof M, Symbol(m, Decl(structuralTypeInDeclareFileForModule.ts, 2, 3))
>M : typeof M, Symbol(M, Decl(structuralTypeInDeclareFileForModule.ts, 0, 0))
2014-08-15 23:33:16 +02:00