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

9 lines
415 B
Plaintext
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/IndexSignatures/parserIndexSignature6.ts(2,4): error TS1023: An index signature parameter type must be 'string' or 'number'.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/IndexSignatures/parserIndexSignature6.ts (1 errors) ====
interface I {
[a:boolean]
~
!!! error TS1023: An index signature parameter type must be 'string' or 'number'.
2014-07-13 01:04:16 +02:00
}