TypeScript/tests/cases/compiler/indexSignatureMustHaveTypeAnnotation.ts
2014-07-12 17:30:19 -07:00

13 lines
No EOL
125 B
TypeScript

interface I {
[x]: string;
[x: string];
}
class C {
[x]: string
}
class C2 {
[x: string]
}