TypeScript/tests/baselines/reference/topLevelLambda3.types

9 lines
182 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/topLevelLambda3.ts ===
var f = () => {this.window;}
>f : () => void
2014-08-15 23:33:16 +02:00
>() => {this.window;} : () => void
>this.window : any
>this : any
>window : any