TypeScript/tests/baselines/reference/topLevelLambda4.types

9 lines
226 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/topLevelLambda4.ts ===
export var x = () => this.window;
2015-04-13 23:01:57 +02:00
>x : () => any, Symbol(x, Decl(topLevelLambda4.ts, 0, 10))
2014-08-15 23:33:16 +02:00
>() => this.window : () => any
>this.window : any
>this : any
>window : any