TypeScript/tests/baselines/reference/topLevelLambda4.types

9 lines
182 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/topLevelLambda4.ts ===
export var x = () => this.window;
>x : () => any
>() => this.window : () => any
>this.window : any
>this : any
>window : any