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

10 lines
351 B
Plaintext
Raw Normal View History

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