TypeScript/tests/baselines/reference/parserES5ComputedPropertyName5.errors.txt
2014-11-25 16:08:53 -08:00

9 lines
No EOL
467 B
Text

tests/cases/conformance/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName5.ts(2,5): error TS1161: Computed property names are not allowed in interfaces or type literals.
==== tests/cases/conformance/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName5.ts (1 errors) ====
interface I {
[e]: number
~~~
!!! error TS1161: Computed property names are not allowed in interfaces or type literals.
}