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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
=== tests/cases/conformance/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance6.ts ===
// checking subtype relations for function types as it relates to contextual signature instantiation
// same as subtypingWithConstructSignatures4 but using class type parameters instead of generic signatures
// all are errors
class Base { foo: string; }
>Base : Base
>foo : string
class Derived extends Base { bar: string; }
>Derived : Derived
>Base : Base
>bar : string
class Derived2 extends Derived { baz: string; }
>Derived2 : Derived2
>Derived : Derived
>baz : string
class OtherDerived extends Base { bing: string; }
>OtherDerived : OtherDerived
>Base : Base
>bing : string
interface A { // T
// M's
a: new <T>(x: T) => T[];
>a : new <T>(x: T) => T[]
>x : T
a2: new <T>(x: T) => string[];
>a2 : new <T>(x: T) => string[]
>x : T
a3: new <T>(x: T) => void;
>a3 : new <T>(x: T) => void
>x : T
a4: new <T, U>(x: T, y: U) => string;
>a4 : new <T, U>(x: T, y: U) => string
>x : T
>y : U
a5: new <T, U>(x: (arg: T) => U) => T;
>a5 : new <T, U>(x: (arg: T) => U) => T
>x : (arg: T) => U
>arg : T
a6: new <T extends Base>(x: (arg: T) => Derived) => T;
>a6 : new <T extends Base>(x: (arg: T) => Derived) => T
>x : (arg: T) => Derived
>arg : T
a11: new <T>(x: { foo: T }, y: { foo: T; bar: T }) => Base;
>a11 : new <T>(x: { foo: T; }, y: { foo: T; bar: T; }) => Base
>x : { foo: T; }
>foo : T
>y : { foo: T; bar: T; }
>foo : T
>bar : T
a15: new <T>(x: { a: T; b: T }) => T[];
>a15 : new <T>(x: { a: T; b: T; }) => T[]
>x : { a: T; b: T; }
>a : T
>b : T
a16: new <T extends Base>(x: { a: T; b: T }) => T[];
>a16 : new <T extends Base>(x: { a: T; b: T; }) => T[]
>x : { a: T; b: T; }
>a : T
>b : T
}
// S's
interface I<T> extends A {
a: new (x: T) => T[];
>a : new (x: T) => T[]
>x : T
}
interface I2<T> extends A {
a2: new (x: T) => string[];
>a2 : new (x: T) => string[]
>x : T
}
interface I3<T> extends A {
a3: new (x: T) => T;
>a3 : new (x: T) => T
>x : T
}
interface I4<T> extends A {
a4: new <U>(x: T, y: U) => string;
>a4 : new <U>(x: T, y: U) => string
>x : T
>y : U
}
interface I5<T> extends A {
a5: new <U>(x: (arg: T) => U) => T;
>a5 : new <U>(x: (arg: T) => U) => T
>x : (arg: T) => U
>arg : T
}
interface I7<T> extends A {
a11: new <U>(x: { foo: T }, y: { foo: U; bar: U }) => Base;
>a11 : new <U>(x: { foo: T; }, y: { foo: U; bar: U; }) => Base
>x : { foo: T; }
>foo : T
>y : { foo: U; bar: U; }
>foo : U
>bar : U
}
interface I9<T> extends A {
a16: new (x: { a: T; b: T }) => T[];
>a16 : new (x: { a: T; b: T; }) => T[]
>x : { a: T; b: T; }
>a : T
>b : T
}
|