TypeScript/tests/baselines/reference/topLevelLambda4.types
2015-04-15 16:44:20 -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