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

7 lines
62 B
TypeScript

interface A {
0: string;
}
var x: A = {
0: 3
};