TypeScript/tests/baselines/reference/structuralTypeInDeclareFileForModule.types
2015-04-13 14:29:37 -07:00

11 lines
428 B
Plaintext

=== tests/cases/compiler/structuralTypeInDeclareFileForModule.ts ===
module M { export var x; }
>M : typeof M, Symbol(M, Decl(structuralTypeInDeclareFileForModule.ts, 0, 0))
>x : any, Symbol(x, Decl(structuralTypeInDeclareFileForModule.ts, 1, 21))
var m = M;
>m : typeof M, Symbol(m, Decl(structuralTypeInDeclareFileForModule.ts, 2, 3))
>M : typeof M, Symbol(M, Decl(structuralTypeInDeclareFileForModule.ts, 0, 0))