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

10 lines
308 B
Text
Raw Normal View History

tests/cases/compiler/thisInModule.ts(3,5): error TS2331: 'this' cannot be referenced in a module body.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/thisInModule.ts (1 errors) ====
module myMod {
var x;
this.x = 5;
~~~~
!!! error TS2331: 'this' cannot be referenced in a module body.
2014-07-13 01:04:16 +02:00
}