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

9 lines
182 B
Plaintext

=== tests/cases/compiler/topLevelLambda4.ts ===
export var x = () => this.window;
>x : () => any
>() => this.window : () => any
>this.window : any
>this : any
>window : any