TypeScript/tests/baselines/reference/functionCall5.types
2014-08-28 12:52:44 -07:00

21 lines
374 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 : () => m1.c1
>m1 : unknown
>c1 : m1.c1
>new m1.c1() : m1.c1
>m1.c1 : typeof m1.c1
>m1 : typeof m1
>c1 : typeof m1.c1
var x = foo();
>x : m1.c1
>foo() : m1.c1
>foo : () => m1.c1