TypeScript/tests/baselines/reference/thisInModule.errors.txt
2014-09-12 13:35:07 -07:00

10 lines
308 B
Plaintext

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