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 54 55 56 57 58 59 60
|
=== tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithStringIndexer3.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
var a: A;
>a : any
var b1: { [x: string]: string; }
>b1 : { [x: string]: string; }
>x : string
a = b1; // error
>a = b1 : { [x: string]: string; }
>a : any
>b1 : { [x: string]: string; }
b1 = a; // error
>b1 = a : any
>b1 : { [x: string]: string; }
>a : any
module Generics {
>Generics : typeof Generics
class A<T extends Derived> {
>A : A<T>
[x: string]: T;
>x : string
}
function foo<T extends Derived>() {
>foo : <T extends Derived>() => void
var a: A<T>;
>a : A<T>
var b: { [x: string]: string; }
>b : { [x: string]: string; }
>x : string
a = b; // error
>a = b : { [x: string]: string; }
>a : A<T>
>b : { [x: string]: string; }
b = a; // error
>b = a : A<T>
>b : { [x: string]: string; }
>a : A<T>
}
}
|