TypeScript/tests/baselines/reference/functionCall5.types

21 lines
345 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== 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