TypeScript/tests/cases/compiler/indexSignatureWithInitializer.ts
2015-01-19 16:36:50 -08:00

8 lines
140 B
TypeScript

// These used to be indexers, now they are computed properties
interface I {
[x = '']: string;
}
class C {
[x = 0]: string
}