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

9 lines
290 B
Plaintext
Raw Normal View History

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