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

11 lines
440 B
Plaintext
Raw Normal View History

2015-04-27 03:31:47 +02:00
tests/cases/conformance/es6/computedProperties/computedPropertyNames19_ES5.ts(3,10): error TS2331: 'this' cannot be referenced in a module or namespace body.
==== tests/cases/conformance/es6/computedProperties/computedPropertyNames19_ES5.ts (1 errors) ====
module M {
var obj = {
[this.bar]: 0
~~~~
2015-04-27 03:31:47 +02:00
!!! error TS2331: 'this' cannot be referenced in a module or namespace body.
}
}