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

10 lines
137 B
TypeScript

class C123 {
[s: string]: number;
constructor() {
}
}
interface D123 extends C123 {
x: number;
y: string;
}