TypeScript/tests/baselines/reference/topLevelLambda.errors.txt
2015-04-26 18:31:47 -07:00

10 lines
351 B
Plaintext

tests/cases/compiler/topLevelLambda.ts(2,17): error TS2331: 'this' cannot be referenced in a module or namespace body.
==== tests/cases/compiler/topLevelLambda.ts (1 errors) ====
module M {
var f = () => {this.window;}
~~~~
!!! error TS2331: 'this' cannot be referenced in a module or namespace body.
}