TypeScript/tests/cases/compiler/numericIndexerConstraint4.ts
Nathan Shively-Sanders 5138e8be8e Correct tests and update baselines.
A lot of tests used non-numeric property names for object literals that
are contextually typed only by a numeric indexer.
2016-05-25 11:37:10 -07:00

12 lines
131 B
TypeScript

class A {
foo: number;
}
class B extends A {
bar: string;
}
var x: {
[idx: number]: A;
} = { 0: new B() }