TypeScript/tests/baselines/reference/thisInModule.errors.txt
2014-09-11 16:11:08 -07:00

7 lines
200 B
Plaintext

==== tests/cases/compiler/thisInModule.ts (1 errors) ====
module myMod {
var x;
this.x = 5;
~~~~
!!! error TS2331: 'this' cannot be referenced in a module body.
}