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

9 lines
344 B
Plaintext
Raw Normal View History

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.
}