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

8 lines
225 B
Text

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