TypeScript/tests/baselines/reference/indexSignatureWithoutTypeAnnotation1.errors.txt
2014-12-03 20:41:39 -08:00

9 lines
344 B
Plaintext

tests/cases/compiler/indexSignatureWithoutTypeAnnotation1.ts(2,3): error TS1021: An index signature must have a type annotation.
==== tests/cases/compiler/indexSignatureWithoutTypeAnnotation1.ts (1 errors) ====
class C {
[a: number];
~~~~~~~~~~~~
!!! error TS1021: An index signature must have a type annotation.
}