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

9 lines
316 B
Plaintext
Raw Normal View History

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