TypeScript/tests/baselines/reference/functionCall5.types

21 lines
374 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/functionCall5.ts ===
module m1 { export class c1 { public a; }}
2014-08-28 21:40:58 +02:00
>m1 : typeof m1
2014-08-15 23:33:16 +02:00
>c1 : c1
>a : any
function foo():m1.c1{return new m1.c1();};
>foo : () => m1.c1
2014-08-28 21:40:58 +02:00
>m1 : unknown
2014-08-25 19:36:12 +02:00
>c1 : m1.c1
>new m1.c1() : m1.c1
>m1.c1 : typeof m1.c1
2014-08-15 23:33:16 +02:00
>m1 : typeof m1
2014-08-25 19:36:12 +02:00
>c1 : typeof m1.c1
2014-08-15 23:33:16 +02:00
var x = foo();
2014-08-25 19:36:12 +02:00
>x : m1.c1
>foo() : m1.c1
>foo : () => m1.c1
2014-08-15 23:33:16 +02:00