TypeScript/tests/baselines/reference/topLevelLambda3.types
2015-04-15 16:44:20 -07:00

9 lines
182 B
Plaintext

=== tests/cases/compiler/topLevelLambda3.ts ===
var f = () => {this.window;}
>f : () => void
>() => {this.window;} : () => void
>this.window : any
>this : any
>window : any