TypeScript/tests/baselines/reference/functionCall5.types
2014-08-15 14:37:48 -07:00

21 lines
345 B
Plaintext

=== tests/cases/compiler/functionCall5.ts ===
module m1 { export class c1 { public a; }}
>m1 : typeof m1
>c1 : c1
>a : any
function foo():m1.c1{return new m1.c1();};
>foo : () => c1
>m1 : m1
>c1 : c1
>new m1.c1() : c1
>m1.c1 : typeof c1
>m1 : typeof m1
>c1 : typeof c1
var x = foo();
>x : c1
>foo() : c1
>foo : () => c1