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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
|
=== tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints3.ts ===
// Two call or construct signatures are considered identical when they have the same number of type parameters and, considering those
// parameters pairwise identical, have identical type parameter constraints, identical number of parameters with identical kind(required,
// optional or rest) and types, and identical return types.
class One { foo: string }
>One : One
>foo : string
class Two { foo: string }
>Two : Two
>foo : string
interface Three { foo: string }
>foo : string
interface Four<T> { foo: T }
>foo : T
interface Five<T> extends Four<T> { }
interface Six<T, U> {
foo: T;
>foo : T
}
class A {
>A : A
foo<T extends U, U extends One>(x: T, y: U): string { return null; }
>foo : <T extends U, U extends One>(x: T, y: U) => string
>x : T
>y : U
>null : null
}
class B<T extends U, U extends Two> {
>B : B<T, U>
foo(x: T, y: U): string { return null; }
>foo : (x: T, y: U) => string
>x : T
>y : U
>null : null
}
class C<T extends U, U extends Three> {
>C : C<T, U>
foo(x: T, y: U): string { return null; }
>foo : (x: T, y: U) => string
>x : T
>y : U
>null : null
}
class D<T extends U, U extends Four<string>> {
>D : D<T, U>
foo(x: T, y: U): string { return null; }
>foo : (x: T, y: U) => string
>x : T
>y : U
>null : null
}
interface I<T extends U, U extends Five<string>> {
foo(x: T, y: U): string;
>foo : (x: T, y: U) => string
>x : T
>y : U
}
interface I2 {
foo<T extends U, U extends Six<string, string>>(x: T, y: U): string;
>foo : <T extends U, U extends Six<string, string>>(x: T, y: U) => string
>x : T
>y : U
}
var a: { foo<T extends U, U extends One>(x: T, y: U): string }
>a : { foo<T extends U, U extends One>(x: T, y: U): string; }
>foo : <T extends U, U extends One>(x: T, y: U) => string
>x : T
>y : U
var b = { foo<T extends U, U extends Two>(x: T, y: U) { return ''; } };
>b : { foo<T extends U, U extends Two>(x: T, y: U): string; }
>{ foo<T extends U, U extends Two>(x: T, y: U) { return ''; } } : { foo<T extends U, U extends Two>(x: T, y: U): string; }
>foo : <T extends U, U extends Two>(x: T, y: U) => string
>x : T
>y : U
>'' : ""
function foo1(x: A);
>foo1 : { (x: A): any; (x: A): any; }
>x : A
function foo1(x: A); // error
>foo1 : { (x: A): any; (x: A): any; }
>x : A
function foo1(x: any) { }
>foo1 : { (x: A): any; (x: A): any; }
>x : any
function foo1b(x: B<Two, Two>);
>foo1b : { (x: B<Two, Two>): any; (x: B<Two, Two>): any; }
>x : B<Two, Two>
function foo1b(x: B<Two, Two>); // error
>foo1b : { (x: B<Two, Two>): any; (x: B<Two, Two>): any; }
>x : B<Two, Two>
function foo1b(x: any) { }
>foo1b : { (x: B<Two, Two>): any; (x: B<Two, Two>): any; }
>x : any
function foo1c(x: C<Three, Three>);
>foo1c : { (x: C<Three, Three>): any; (x: C<Three, Three>): any; }
>x : C<Three, Three>
function foo1c(x: C<Three, Three>); // error
>foo1c : { (x: C<Three, Three>): any; (x: C<Three, Three>): any; }
>x : C<Three, Three>
function foo1c(x: any) { }
>foo1c : { (x: C<Three, Three>): any; (x: C<Three, Three>): any; }
>x : any
function foo2(x: I<Five<string>, Five<string>>);
>foo2 : { (x: I<Five<string>, Five<string>>): any; (x: I<Five<string>, Five<string>>): any; }
>x : I<Five<string>, Five<string>>
function foo2(x: I<Five<string>, Five<string>>); // error
>foo2 : { (x: I<Five<string>, Five<string>>): any; (x: I<Five<string>, Five<string>>): any; }
>x : I<Five<string>, Five<string>>
function foo2(x: any) { }
>foo2 : { (x: I<Five<string>, Five<string>>): any; (x: I<Five<string>, Five<string>>): any; }
>x : any
function foo3(x: typeof a);
>foo3 : { (x: { foo<T extends U, U extends One>(x: T, y: U): string; }): any; (x: { foo<T extends U, U extends One>(x: T, y: U): string; }): any; }
>x : { foo<T extends U, U extends One>(x: T, y: U): string; }
>a : { foo<T extends U, U extends One>(x: T, y: U): string; }
function foo3(x: typeof a); // error
>foo3 : { (x: { foo<T extends U, U extends One>(x: T, y: U): string; }): any; (x: { foo<T extends U, U extends One>(x: T, y: U): string; }): any; }
>x : { foo<T extends U, U extends One>(x: T, y: U): string; }
>a : { foo<T extends U, U extends One>(x: T, y: U): string; }
function foo3(x: any) { }
>foo3 : { (x: { foo<T extends U, U extends One>(x: T, y: U): string; }): any; (x: { foo<T extends U, U extends One>(x: T, y: U): string; }): any; }
>x : any
function foo4(x: typeof b);
>foo4 : { (x: { foo<T extends U, U extends Two>(x: T, y: U): string; }): any; (x: { foo<T extends U, U extends Two>(x: T, y: U): string; }): any; }
>x : { foo<T extends U, U extends Two>(x: T, y: U): string; }
>b : { foo<T extends U, U extends Two>(x: T, y: U): string; }
function foo4(x: typeof b); // error
>foo4 : { (x: { foo<T extends U, U extends Two>(x: T, y: U): string; }): any; (x: { foo<T extends U, U extends Two>(x: T, y: U): string; }): any; }
>x : { foo<T extends U, U extends Two>(x: T, y: U): string; }
>b : { foo<T extends U, U extends Two>(x: T, y: U): string; }
function foo4(x: any) { }
>foo4 : { (x: { foo<T extends U, U extends Two>(x: T, y: U): string; }): any; (x: { foo<T extends U, U extends Two>(x: T, y: U): string; }): any; }
>x : any
function foo5(x: A);
>foo5 : { (x: A): any; (x: B<Two, Two>): any; }
>x : A
function foo5(x: B<Two, Two>); // ok
>foo5 : { (x: A): any; (x: B<Two, Two>): any; }
>x : B<Two, Two>
function foo5(x: any) { }
>foo5 : { (x: A): any; (x: B<Two, Two>): any; }
>x : any
function foo5b(x: A);
>foo5b : { (x: A): any; (x: C<Three, Three>): any; }
>x : A
function foo5b(x: C<Three, Three>); // ok
>foo5b : { (x: A): any; (x: C<Three, Three>): any; }
>x : C<Three, Three>
function foo5b(x: any) { }
>foo5b : { (x: A): any; (x: C<Three, Three>): any; }
>x : any
function foo5c(x: C<Three, Three>);
>foo5c : { (x: C<Three, Three>): any; (x: D<Four<string>, Four<string>>): any; }
>x : C<Three, Three>
function foo5c(x: D<Four<string>, Four<string>>); // error
>foo5c : { (x: C<Three, Three>): any; (x: D<Four<string>, Four<string>>): any; }
>x : D<Four<string>, Four<string>>
function foo5c(x: any) { }
>foo5c : { (x: C<Three, Three>): any; (x: D<Four<string>, Four<string>>): any; }
>x : any
function foo6c(x: C<Three, Three>);
>foo6c : { (x: C<Three, Three>): any; (x: D<Four<string>, Four<string>>): any; }
>x : C<Three, Three>
function foo6c(x: D<Four<string>, Four<string>>); // error
>foo6c : { (x: C<Three, Three>): any; (x: D<Four<string>, Four<string>>): any; }
>x : D<Four<string>, Four<string>>
function foo6c(x: any) { }
>foo6c : { (x: C<Three, Three>): any; (x: D<Four<string>, Four<string>>): any; }
>x : any
function foo6(x: A);
>foo6 : { (x: A): any; (x: I<Five<string>, Five<string>>): any; }
>x : A
function foo6(x: I<Five<string>, Five<string>>); // ok
>foo6 : { (x: A): any; (x: I<Five<string>, Five<string>>): any; }
>x : I<Five<string>, Five<string>>
function foo6(x: any) { }
>foo6 : { (x: A): any; (x: I<Five<string>, Five<string>>): any; }
>x : any
function foo7(x: A);
>foo7 : { (x: A): any; (x: { foo<T extends U, U extends One>(x: T, y: U): string; }): any; }
>x : A
function foo7(x: typeof a); // error
>foo7 : { (x: A): any; (x: { foo<T extends U, U extends One>(x: T, y: U): string; }): any; }
>x : { foo<T extends U, U extends One>(x: T, y: U): string; }
>a : { foo<T extends U, U extends One>(x: T, y: U): string; }
function foo7(x: any) { }
>foo7 : { (x: A): any; (x: { foo<T extends U, U extends One>(x: T, y: U): string; }): any; }
>x : any
function foo8(x: B<Two, Two>);
>foo8 : { (x: B<Two, Two>): any; (x: I<Five<string>, Five<string>>): any; }
>x : B<Two, Two>
function foo8(x: I<Five<string>, Five<string>>); // error
>foo8 : { (x: B<Two, Two>): any; (x: I<Five<string>, Five<string>>): any; }
>x : I<Five<string>, Five<string>>
function foo8(x: any) { }
>foo8 : { (x: B<Two, Two>): any; (x: I<Five<string>, Five<string>>): any; }
>x : any
function foo9(x: B<Two, Two>);
>foo9 : { (x: B<Two, Two>): any; (x: C<Three, Three>): any; }
>x : B<Two, Two>
function foo9(x: C<Three, Three>); // error
>foo9 : { (x: B<Two, Two>): any; (x: C<Three, Three>): any; }
>x : C<Three, Three>
function foo9(x: any) { }
>foo9 : { (x: B<Two, Two>): any; (x: C<Three, Three>): any; }
>x : any
function foo10(x: B<Two, Two>);
>foo10 : { (x: B<Two, Two>): any; (x: { foo<T extends U, U extends One>(x: T, y: U): string; }): any; }
>x : B<Two, Two>
function foo10(x: typeof a); // ok
>foo10 : { (x: B<Two, Two>): any; (x: { foo<T extends U, U extends One>(x: T, y: U): string; }): any; }
>x : { foo<T extends U, U extends One>(x: T, y: U): string; }
>a : { foo<T extends U, U extends One>(x: T, y: U): string; }
function foo10(x: any) { }
>foo10 : { (x: B<Two, Two>): any; (x: { foo<T extends U, U extends One>(x: T, y: U): string; }): any; }
>x : any
function foo11(x: B<Two, Two>);
>foo11 : { (x: B<Two, Two>): any; (x: { foo<T extends U, U extends Two>(x: T, y: U): string; }): any; }
>x : B<Two, Two>
function foo11(x: typeof b); // ok
>foo11 : { (x: B<Two, Two>): any; (x: { foo<T extends U, U extends Two>(x: T, y: U): string; }): any; }
>x : { foo<T extends U, U extends Two>(x: T, y: U): string; }
>b : { foo<T extends U, U extends Two>(x: T, y: U): string; }
function foo11(x: any) { }
>foo11 : { (x: B<Two, Two>): any; (x: { foo<T extends U, U extends Two>(x: T, y: U): string; }): any; }
>x : any
function foo12(x: I<Five<string>, Five<string>>);
>foo12 : { (x: I<Five<string>, Five<string>>): any; (x: C<Three, Three>): any; }
>x : I<Five<string>, Five<string>>
function foo12(x: C<Three, Three>); // error
>foo12 : { (x: I<Five<string>, Five<string>>): any; (x: C<Three, Three>): any; }
>x : C<Three, Three>
function foo12(x: any) { }
>foo12 : { (x: I<Five<string>, Five<string>>): any; (x: C<Three, Three>): any; }
>x : any
function foo12b(x: I2);
>foo12b : { (x: I2): any; (x: C<Three, Three>): any; }
>x : I2
function foo12b(x: C<Three, Three>); // ok
>foo12b : { (x: I2): any; (x: C<Three, Three>): any; }
>x : C<Three, Three>
function foo12b(x: any) { }
>foo12b : { (x: I2): any; (x: C<Three, Three>): any; }
>x : any
function foo13(x: I<Five<string>, Five<string>>);
>foo13 : { (x: I<Five<string>, Five<string>>): any; (x: { foo<T extends U, U extends One>(x: T, y: U): string; }): any; }
>x : I<Five<string>, Five<string>>
function foo13(x: typeof a); // ok
>foo13 : { (x: I<Five<string>, Five<string>>): any; (x: { foo<T extends U, U extends One>(x: T, y: U): string; }): any; }
>x : { foo<T extends U, U extends One>(x: T, y: U): string; }
>a : { foo<T extends U, U extends One>(x: T, y: U): string; }
function foo13(x: any) { }
>foo13 : { (x: I<Five<string>, Five<string>>): any; (x: { foo<T extends U, U extends One>(x: T, y: U): string; }): any; }
>x : any
function foo14(x: I<Five<string>, Five<string>>);
>foo14 : { (x: I<Five<string>, Five<string>>): any; (x: { foo<T extends U, U extends Two>(x: T, y: U): string; }): any; }
>x : I<Five<string>, Five<string>>
function foo14(x: typeof b); // ok
>foo14 : { (x: I<Five<string>, Five<string>>): any; (x: { foo<T extends U, U extends Two>(x: T, y: U): string; }): any; }
>x : { foo<T extends U, U extends Two>(x: T, y: U): string; }
>b : { foo<T extends U, U extends Two>(x: T, y: U): string; }
function foo14(x: any) { }
>foo14 : { (x: I<Five<string>, Five<string>>): any; (x: { foo<T extends U, U extends Two>(x: T, y: U): string; }): any; }
>x : any
function foo15(x: I2);
>foo15 : { (x: I2): any; (x: C<Three, Three>): any; }
>x : I2
function foo15(x: C<Three, Three>); // ok
>foo15 : { (x: I2): any; (x: C<Three, Three>): any; }
>x : C<Three, Three>
function foo15(x: any) { }
>foo15 : { (x: I2): any; (x: C<Three, Three>): any; }
>x : any
|