TypeScript/tests/baselines/reference/thisKeyword.errors.txt
2015-04-26 18:31:47 -07:00

9 lines
316 B
Plaintext

tests/cases/compiler/thisKeyword.ts(2,5): error TS2331: 'this' cannot be referenced in a module or namespace body.
==== tests/cases/compiler/thisKeyword.ts (1 errors) ====
module foo {
this.bar = 4;
~~~~
!!! error TS2331: 'this' cannot be referenced in a module or namespace body.
}