==== tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithNumericIndexer2.ts (6 errors) ==== // Derived type indexer must be subtype of base type indexer interface Base { foo: string; } interface Derived extends Base { bar: string; } interface Derived2 extends Derived { baz: string; } interface A { [x: number]: Base; } var a: A; var b: { [x: number]: Derived; } a = b; b = a; // error ~ !!! Type 'A' is not assignable to type '{ [x: number]: Derived; }': !!! Index signatures are incompatible: !!! Type 'Base' is not assignable to type 'Derived': !!! Property 'bar' is missing in type 'Base'. var b2: { [x: number]: Derived2; } a = b2; b2 = a; // error ~~ !!! Type 'A' is not assignable to type '{ [x: number]: Derived2; }': !!! Index signatures are incompatible: !!! Type 'Base' is not assignable to type 'Derived2': !!! Property 'baz' is missing in type 'Base'. module Generics { interface A { [x: number]: T; } interface B extends A { [x: number]: Derived; // ok } function foo() { var a: A; var b: { [x: number]: Derived; } a = b; // error ~ !!! Type '{ [x: number]: Derived; }' is not assignable to type 'A': !!! Index signatures are incompatible: !!! Type 'Derived' is not assignable to type 'T'. b = a; // error ~ !!! Type 'A' is not assignable to type '{ [x: number]: Derived; }': !!! Index signatures are incompatible: !!! Type 'T' is not assignable to type 'Derived': !!! Property 'bar' is missing in type 'Base'. var b2: { [x: number]: Derived2; } a = b2; // error ~ !!! Type '{ [x: number]: Derived2; }' is not assignable to type 'A': !!! Index signatures are incompatible: !!! Type 'Derived2' is not assignable to type 'T'. b2 = a; // error ~~ !!! Type 'A' is not assignable to type '{ [x: number]: Derived2; }': !!! Index signatures are incompatible: !!! Type 'T' is not assignable to type 'Derived2': !!! Property 'baz' is missing in type 'Base'. var b3: { [x: number]: T; } a = b3; // ok b3 = a; // ok } }