1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
=== tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithStringIndexer4.ts ===
// Derived type indexer must be subtype of base type indexer
interface Base { foo: string; }
>foo : string
interface Derived extends Base { bar: string; }
>bar : string
interface Derived2 extends Derived { baz: string; }
>baz : string
class A {
>A : A
[x: string]: Derived;
>x : string
}
class B extends A {
>B : B
>A : A
[x: string]: string; // error
>x : string
}
module Generics {
>Generics : typeof Generics
class A<T extends Derived> {
>A : A<T>
[x: string]: T;
>x : string
}
class B extends A<Base> {
>B : B
>A : A<Base>
[x: string]: string; // error
>x : string
}
class B3<T extends Derived> extends A<T> {
>B3 : B3<T>
>A : A<T>
[x: string]: string; // error
>x : string
}
}
|