TypeScript/tests/baselines/reference/parserIndexSignature5.errors.txt
2015-01-19 16:36:50 -08:00

12 lines
621 B
Plaintext

tests/cases/conformance/parser/ecmascript5/IndexSignatures/parserIndexSignature5.ts(2,3): error TS1169: Computed property names are not allowed in interfaces.
tests/cases/conformance/parser/ecmascript5/IndexSignatures/parserIndexSignature5.ts(2,4): error TS2304: Cannot find name 'a'.
==== tests/cases/conformance/parser/ecmascript5/IndexSignatures/parserIndexSignature5.ts (2 errors) ====
interface I {
[a] // Used to be indexer, now it is a computed property
~~~
!!! error TS1169: Computed property names are not allowed in interfaces.
~
!!! error TS2304: Cannot find name 'a'.
}