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
|
=== tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterCounts.ts ===
// object types are identical structurally
class A {
>A : A
foo<T>(x: T): T { return null; }
>foo : <T>(x: T) => T
>x : T
>null : null
}
class B<U, V> {
>B : B<U, V>
foo(x: U): U { return null; }
>foo : (x: U) => U
>x : U
>null : null
}
class C<V, W, X> {
>C : C<V, W, X>
foo(x: V): V { return null; }
>foo : (x: V) => V
>x : V
>null : null
}
interface I<X, Y, Z, A> {
foo(x: X): X;
>foo : (x: X) => X
>x : X
}
interface I2 {
foo<Y, Z, A, B>(x: Y): Y;
>foo : <Y, Z, A, B>(x: Y) => Y
>x : Y
}
var a: { foo<Z, A, B, C, D>(x: Z): Z }
>a : { foo<Z, A, B, C, D>(x: Z): Z; }
>foo : <Z, A, B, C, D>(x: Z) => Z
>x : Z
var b = { foo<A, B, C, D, E, F>(x: A) { return x; } };
>b : { foo<A, B, C, D, E, F>(x: A): A; }
>{ foo<A, B, C, D, E, F>(x: A) { return x; } } : { foo<A, B, C, D, E, F>(x: A): A; }
>foo : <A, B, C, D, E, F>(x: A) => A
>x : A
>x : A
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<string, string>);
>foo1b : { (x: B<string, string>): any; (x: B<string, string>): any; }
>x : B<string, string>
function foo1b(x: B<string, string>); // error
>foo1b : { (x: B<string, string>): any; (x: B<string, string>): any; }
>x : B<string, string>
function foo1b(x: any) { }
>foo1b : { (x: B<string, string>): any; (x: B<string, string>): any; }
>x : any
function foo1c(x: C<string, number, boolean>);
>foo1c : { (x: C<string, number, boolean>): any; (x: C<string, number, boolean>): any; }
>x : C<string, number, boolean>
function foo1c(x: C<string, number, boolean>); // error
>foo1c : { (x: C<string, number, boolean>): any; (x: C<string, number, boolean>): any; }
>x : C<string, number, boolean>
function foo1c(x: any) { }
>foo1c : { (x: C<string, number, boolean>): any; (x: C<string, number, boolean>): any; }
>x : any
function foo2(x: I<string, boolean, number, string>);
>foo2 : { (x: I<string, boolean, number, string>): any; (x: I<string, boolean, number, string>): any; }
>x : I<string, boolean, number, string>
function foo2(x: I<string, boolean, number, string>); // error
>foo2 : { (x: I<string, boolean, number, string>): any; (x: I<string, boolean, number, string>): any; }
>x : I<string, boolean, number, string>
function foo2(x: any) { }
>foo2 : { (x: I<string, boolean, number, string>): any; (x: I<string, boolean, number, string>): any; }
>x : any
function foo3(x: typeof a);
>foo3 : { (x: { foo<Z, A, B, C, D>(x: Z): Z; }): any; (x: { foo<Z, A, B, C, D>(x: Z): Z; }): any; }
>x : { foo<Z, A, B, C, D>(x: Z): Z; }
>a : { foo<Z, A, B, C, D>(x: Z): Z; }
function foo3(x: typeof a); // error
>foo3 : { (x: { foo<Z, A, B, C, D>(x: Z): Z; }): any; (x: { foo<Z, A, B, C, D>(x: Z): Z; }): any; }
>x : { foo<Z, A, B, C, D>(x: Z): Z; }
>a : { foo<Z, A, B, C, D>(x: Z): Z; }
function foo3(x: any) { }
>foo3 : { (x: { foo<Z, A, B, C, D>(x: Z): Z; }): any; (x: { foo<Z, A, B, C, D>(x: Z): Z; }): any; }
>x : any
function foo4(x: typeof b);
>foo4 : { (x: { foo<A, B, C, D, E, F>(x: A): A; }): any; (x: { foo<A, B, C, D, E, F>(x: A): A; }): any; }
>x : { foo<A, B, C, D, E, F>(x: A): A; }
>b : { foo<A, B, C, D, E, F>(x: A): A; }
function foo4(x: typeof b); // error
>foo4 : { (x: { foo<A, B, C, D, E, F>(x: A): A; }): any; (x: { foo<A, B, C, D, E, F>(x: A): A; }): any; }
>x : { foo<A, B, C, D, E, F>(x: A): A; }
>b : { foo<A, B, C, D, E, F>(x: A): A; }
function foo4(x: any) { }
>foo4 : { (x: { foo<A, B, C, D, E, F>(x: A): A; }): any; (x: { foo<A, B, C, D, E, F>(x: A): A; }): any; }
>x : any
function foo5(x: A);
>foo5 : { (x: A): any; (x: B<string, string>): any; }
>x : A
function foo5(x: B<string, string>); // ok
>foo5 : { (x: A): any; (x: B<string, string>): any; }
>x : B<string, string>
function foo5(x: any) { }
>foo5 : { (x: A): any; (x: B<string, string>): any; }
>x : any
function foo5b(x: A);
>foo5b : { (x: A): any; (x: C<string, number, boolean>): any; }
>x : A
function foo5b(x: C<string, number, boolean>); // ok
>foo5b : { (x: A): any; (x: C<string, number, boolean>): any; }
>x : C<string, number, boolean>
function foo5b(x: any) { }
>foo5b : { (x: A): any; (x: C<string, number, boolean>): any; }
>x : any
function foo6(x: A);
>foo6 : { (x: A): any; (x: I<string, number, boolean, Date>): any; }
>x : A
function foo6(x: I<string, number, boolean, Date>); // ok
>foo6 : { (x: A): any; (x: I<string, number, boolean, Date>): any; }
>x : I<string, number, boolean, Date>
function foo6(x: any) { }
>foo6 : { (x: A): any; (x: I<string, number, boolean, Date>): any; }
>x : any
function foo7(x: A);
>foo7 : { (x: A): any; (x: { foo<Z, A, B, C, D>(x: Z): Z; }): any; }
>x : A
function foo7(x: typeof a); // no error, bug?
>foo7 : { (x: A): any; (x: { foo<Z, A, B, C, D>(x: Z): Z; }): any; }
>x : { foo<Z, A, B, C, D>(x: Z): Z; }
>a : { foo<Z, A, B, C, D>(x: Z): Z; }
function foo7(x: any) { }
>foo7 : { (x: A): any; (x: { foo<Z, A, B, C, D>(x: Z): Z; }): any; }
>x : any
function foo8(x: B<string, string>);
>foo8 : { (x: B<string, string>): any; (x: I<string, string, boolean, Date>): any; }
>x : B<string, string>
function foo8(x: I<string, string, boolean, Date>); // error
>foo8 : { (x: B<string, string>): any; (x: I<string, string, boolean, Date>): any; }
>x : I<string, string, boolean, Date>
function foo8(x: any) { }
>foo8 : { (x: B<string, string>): any; (x: I<string, string, boolean, Date>): any; }
>x : any
function foo9(x: B<string, number>);
>foo9 : { (x: B<string, number>): any; (x: C<string, number, B<string, string>>): any; }
>x : B<string, number>
function foo9(x: C<string, number, B<string, string>>); // error
>foo9 : { (x: B<string, number>): any; (x: C<string, number, B<string, string>>): any; }
>x : C<string, number, B<string, string>>
function foo9(x: any) { }
>foo9 : { (x: B<string, number>): any; (x: C<string, number, B<string, string>>): any; }
>x : any
function foo10(x: B<string, boolean>);
>foo10 : { (x: B<string, boolean>): any; (x: { foo<Z, A, B, C, D>(x: Z): Z; }): any; }
>x : B<string, boolean>
function foo10(x: typeof a); // ok
>foo10 : { (x: B<string, boolean>): any; (x: { foo<Z, A, B, C, D>(x: Z): Z; }): any; }
>x : { foo<Z, A, B, C, D>(x: Z): Z; }
>a : { foo<Z, A, B, C, D>(x: Z): Z; }
function foo10(x: any) { }
>foo10 : { (x: B<string, boolean>): any; (x: { foo<Z, A, B, C, D>(x: Z): Z; }): any; }
>x : any
function foo11(x: B<string, boolean>);
>foo11 : { (x: B<string, boolean>): any; (x: { foo<A, B, C, D, E, F>(x: A): A; }): any; }
>x : B<string, boolean>
function foo11(x: typeof b); // ok
>foo11 : { (x: B<string, boolean>): any; (x: { foo<A, B, C, D, E, F>(x: A): A; }): any; }
>x : { foo<A, B, C, D, E, F>(x: A): A; }
>b : { foo<A, B, C, D, E, F>(x: A): A; }
function foo11(x: any) { }
>foo11 : { (x: B<string, boolean>): any; (x: { foo<A, B, C, D, E, F>(x: A): A; }): any; }
>x : any
function foo12(x: I<B<string, number>, number, Date, string>);
>foo12 : { (x: I<B<string, number>, number, Date, string>): any; (x: C<B<string, number>, number, Date>): any; }
>x : I<B<string, number>, number, Date, string>
function foo12(x: C<B<string, number>, number, Date>); // error
>foo12 : { (x: I<B<string, number>, number, Date, string>): any; (x: C<B<string, number>, number, Date>): any; }
>x : C<B<string, number>, number, Date>
function foo12(x: any) { }
>foo12 : { (x: I<B<string, number>, number, Date, string>): any; (x: C<B<string, number>, number, Date>): any; }
>x : any
function foo12b(x: I2);
>foo12b : { (x: I2): any; (x: C<string, string, boolean>): any; }
>x : I2
function foo12b(x: C<string, string, boolean>); // ok
>foo12b : { (x: I2): any; (x: C<string, string, boolean>): any; }
>x : C<string, string, boolean>
function foo12b(x: any) { }
>foo12b : { (x: I2): any; (x: C<string, string, boolean>): any; }
>x : any
function foo13(x: I<string, Date, RegExp, Date>);
>foo13 : { (x: I<string, Date, RegExp, Date>): any; (x: { foo<Z, A, B, C, D>(x: Z): Z; }): any; }
>x : I<string, Date, RegExp, Date>
function foo13(x: typeof a); // ok
>foo13 : { (x: I<string, Date, RegExp, Date>): any; (x: { foo<Z, A, B, C, D>(x: Z): Z; }): any; }
>x : { foo<Z, A, B, C, D>(x: Z): Z; }
>a : { foo<Z, A, B, C, D>(x: Z): Z; }
function foo13(x: any) { }
>foo13 : { (x: I<string, Date, RegExp, Date>): any; (x: { foo<Z, A, B, C, D>(x: Z): Z; }): any; }
>x : any
function foo14(x: I<string, Date, RegExp, boolean>);
>foo14 : { (x: I<string, Date, RegExp, boolean>): any; (x: { foo<A, B, C, D, E, F>(x: A): A; }): any; }
>x : I<string, Date, RegExp, boolean>
function foo14(x: typeof b); // ok
>foo14 : { (x: I<string, Date, RegExp, boolean>): any; (x: { foo<A, B, C, D, E, F>(x: A): A; }): any; }
>x : { foo<A, B, C, D, E, F>(x: A): A; }
>b : { foo<A, B, C, D, E, F>(x: A): A; }
function foo14(x: any) { }
>foo14 : { (x: I<string, Date, RegExp, boolean>): any; (x: { foo<A, B, C, D, E, F>(x: A): A; }): any; }
>x : any
function foo15(x: I2);
>foo15 : { (x: I2): any; (x: C<number, B<string, string>, B<number, string>>): any; }
>x : I2
function foo15(x: C<number, B<string, string>, B<number, string>>); // ok
>foo15 : { (x: I2): any; (x: C<number, B<string, string>, B<number, string>>): any; }
>x : C<number, B<string, string>, B<number, string>>
function foo15(x: any) { }
>foo15 : { (x: I2): any; (x: C<number, B<string, string>, B<number, string>>): any; }
>x : any
|