TypeScript/tests/baselines/reference/topLevelLambda.errors.txt

10 lines
325 B
Plaintext
Raw Normal View History

tests/cases/compiler/topLevelLambda.ts(2,17): error TS2331: 'this' cannot be referenced in a module body.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/topLevelLambda.ts (1 errors) ====
module M {
var f = () => {this.window;}
~~~~
!!! error TS2331: 'this' cannot be referenced in a module body.
2014-07-13 01:04:16 +02:00
}