TypeScript/tests/baselines/reference/topLevelLambda4.types
2015-04-13 14:29:37 -07:00

9 lines
226 B
Plaintext

=== tests/cases/compiler/topLevelLambda4.ts ===
export var x = () => this.window;
>x : () => any, Symbol(x, Decl(topLevelLambda4.ts, 0, 10))
>() => this.window : () => any
>this.window : any
>this : any
>window : any