TypeScript/tests/baselines/reference/indexerSignatureWithRestParam.errors.txt
2014-09-11 16:11:08 -07:00

12 lines
343 B
Plaintext

==== tests/cases/compiler/indexerSignatureWithRestParam.ts (2 errors) ====
interface I {
[...x]: string;
~
!!! error TS1017: An index signature cannot have a rest parameter.
}
class C {
[...x]: string
~
!!! error TS1017: An index signature cannot have a rest parameter.
}