File: assignmentCompatWithCallSignatures5.symbols

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (358 lines) | stat: -rw-r--r-- 18,995 bytes parent folder | download | duplicates (7)
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
355
356
357
358
=== tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures5.ts ===
// checking assignment compat for function types. No errors in this file

class Base { foo: string; }
>Base : Symbol(Base, Decl(assignmentCompatWithCallSignatures5.ts, 0, 0))
>foo : Symbol(Base.foo, Decl(assignmentCompatWithCallSignatures5.ts, 2, 12))

class Derived extends Base { bar: string; }
>Derived : Symbol(Derived, Decl(assignmentCompatWithCallSignatures5.ts, 2, 27))
>Base : Symbol(Base, Decl(assignmentCompatWithCallSignatures5.ts, 0, 0))
>bar : Symbol(Derived.bar, Decl(assignmentCompatWithCallSignatures5.ts, 3, 28))

class Derived2 extends Derived { baz: string; }
>Derived2 : Symbol(Derived2, Decl(assignmentCompatWithCallSignatures5.ts, 3, 43))
>Derived : Symbol(Derived, Decl(assignmentCompatWithCallSignatures5.ts, 2, 27))
>baz : Symbol(Derived2.baz, Decl(assignmentCompatWithCallSignatures5.ts, 4, 32))

class OtherDerived extends Base { bing: string; }
>OtherDerived : Symbol(OtherDerived, Decl(assignmentCompatWithCallSignatures5.ts, 4, 47))
>Base : Symbol(Base, Decl(assignmentCompatWithCallSignatures5.ts, 0, 0))
>bing : Symbol(OtherDerived.bing, Decl(assignmentCompatWithCallSignatures5.ts, 5, 33))

var a: <T>(x: T) => T[];
>a : Symbol(a, Decl(assignmentCompatWithCallSignatures5.ts, 7, 3))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 7, 8))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 7, 11))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 7, 8))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 7, 8))

var a2: <T>(x: T) => string[];
>a2 : Symbol(a2, Decl(assignmentCompatWithCallSignatures5.ts, 8, 3))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 8, 9))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 8, 12))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 8, 9))

var a3: <T>(x: T) => void;
>a3 : Symbol(a3, Decl(assignmentCompatWithCallSignatures5.ts, 9, 3))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 9, 9))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 9, 12))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 9, 9))

var a4: <T,U>(x: T, y: U) => string;
>a4 : Symbol(a4, Decl(assignmentCompatWithCallSignatures5.ts, 10, 3))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 10, 9))
>U : Symbol(U, Decl(assignmentCompatWithCallSignatures5.ts, 10, 11))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 10, 14))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 10, 9))
>y : Symbol(y, Decl(assignmentCompatWithCallSignatures5.ts, 10, 19))
>U : Symbol(U, Decl(assignmentCompatWithCallSignatures5.ts, 10, 11))

var a5: <T,U>(x: (arg: T) => U) => T;
>a5 : Symbol(a5, Decl(assignmentCompatWithCallSignatures5.ts, 11, 3))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 11, 9))
>U : Symbol(U, Decl(assignmentCompatWithCallSignatures5.ts, 11, 11))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 11, 14))
>arg : Symbol(arg, Decl(assignmentCompatWithCallSignatures5.ts, 11, 18))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 11, 9))
>U : Symbol(U, Decl(assignmentCompatWithCallSignatures5.ts, 11, 11))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 11, 9))

var a6: <T extends Base>(x: (arg: T) => Derived) => T;
>a6 : Symbol(a6, Decl(assignmentCompatWithCallSignatures5.ts, 12, 3))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 12, 9))
>Base : Symbol(Base, Decl(assignmentCompatWithCallSignatures5.ts, 0, 0))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 12, 25))
>arg : Symbol(arg, Decl(assignmentCompatWithCallSignatures5.ts, 12, 29))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 12, 9))
>Derived : Symbol(Derived, Decl(assignmentCompatWithCallSignatures5.ts, 2, 27))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 12, 9))

var a11: <T>(x: { foo: T }, y: { foo: T; bar: T }) => Base;
>a11 : Symbol(a11, Decl(assignmentCompatWithCallSignatures5.ts, 13, 3))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 13, 10))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 13, 13))
>foo : Symbol(foo, Decl(assignmentCompatWithCallSignatures5.ts, 13, 17))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 13, 10))
>y : Symbol(y, Decl(assignmentCompatWithCallSignatures5.ts, 13, 27))
>foo : Symbol(foo, Decl(assignmentCompatWithCallSignatures5.ts, 13, 32))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 13, 10))
>bar : Symbol(bar, Decl(assignmentCompatWithCallSignatures5.ts, 13, 40))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 13, 10))
>Base : Symbol(Base, Decl(assignmentCompatWithCallSignatures5.ts, 0, 0))

var a15: <T>(x: { a: T; b: T }) => T[];
>a15 : Symbol(a15, Decl(assignmentCompatWithCallSignatures5.ts, 14, 3))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 14, 10))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 14, 13))
>a : Symbol(a, Decl(assignmentCompatWithCallSignatures5.ts, 14, 17))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 14, 10))
>b : Symbol(b, Decl(assignmentCompatWithCallSignatures5.ts, 14, 23))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 14, 10))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 14, 10))

var a16: <T extends Base>(x: { a: T; b: T }) => T[];
>a16 : Symbol(a16, Decl(assignmentCompatWithCallSignatures5.ts, 15, 3))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 15, 10))
>Base : Symbol(Base, Decl(assignmentCompatWithCallSignatures5.ts, 0, 0))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 15, 26))
>a : Symbol(a, Decl(assignmentCompatWithCallSignatures5.ts, 15, 30))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 15, 10))
>b : Symbol(b, Decl(assignmentCompatWithCallSignatures5.ts, 15, 36))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 15, 10))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 15, 10))

var a17: {
>a17 : Symbol(a17, Decl(assignmentCompatWithCallSignatures5.ts, 16, 3))

    <T extends Derived>(x: (a: T) => T): T[];
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 17, 5))
>Derived : Symbol(Derived, Decl(assignmentCompatWithCallSignatures5.ts, 2, 27))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 17, 24))
>a : Symbol(a, Decl(assignmentCompatWithCallSignatures5.ts, 17, 28))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 17, 5))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 17, 5))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 17, 5))

    <T extends Base>(x: (a: T) => T): T[];        
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 18, 5))
>Base : Symbol(Base, Decl(assignmentCompatWithCallSignatures5.ts, 0, 0))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 18, 21))
>a : Symbol(a, Decl(assignmentCompatWithCallSignatures5.ts, 18, 25))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 18, 5))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 18, 5))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 18, 5))

};
var a18: {
>a18 : Symbol(a18, Decl(assignmentCompatWithCallSignatures5.ts, 20, 3))

    (x: {
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 21, 5))

        <T extends Derived>(a: T): T;
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 22, 9))
>Derived : Symbol(Derived, Decl(assignmentCompatWithCallSignatures5.ts, 2, 27))
>a : Symbol(a, Decl(assignmentCompatWithCallSignatures5.ts, 22, 28))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 22, 9))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 22, 9))

        <T extends Base>(a: T): T;
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 23, 9))
>Base : Symbol(Base, Decl(assignmentCompatWithCallSignatures5.ts, 0, 0))
>a : Symbol(a, Decl(assignmentCompatWithCallSignatures5.ts, 23, 25))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 23, 9))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 23, 9))

    }): any[];
    (x: {
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 25, 5))

        <T extends Derived2>(a: T): T;
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 26, 9))
>Derived2 : Symbol(Derived2, Decl(assignmentCompatWithCallSignatures5.ts, 3, 43))
>a : Symbol(a, Decl(assignmentCompatWithCallSignatures5.ts, 26, 29))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 26, 9))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 26, 9))

        <T extends Base>(a: T): T;
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 27, 9))
>Base : Symbol(Base, Decl(assignmentCompatWithCallSignatures5.ts, 0, 0))
>a : Symbol(a, Decl(assignmentCompatWithCallSignatures5.ts, 27, 25))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 27, 9))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 27, 9))

    }): any[];
};

var b: <T>(x: T) => T[]; 
>b : Symbol(b, Decl(assignmentCompatWithCallSignatures5.ts, 31, 3))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 31, 8))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 31, 11))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 31, 8))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 31, 8))

a = b; // ok
>a : Symbol(a, Decl(assignmentCompatWithCallSignatures5.ts, 7, 3))
>b : Symbol(b, Decl(assignmentCompatWithCallSignatures5.ts, 31, 3))

b = a; // ok
>b : Symbol(b, Decl(assignmentCompatWithCallSignatures5.ts, 31, 3))
>a : Symbol(a, Decl(assignmentCompatWithCallSignatures5.ts, 7, 3))

var b2: <T>(x: T) => string[]; 
>b2 : Symbol(b2, Decl(assignmentCompatWithCallSignatures5.ts, 34, 3))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 34, 9))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 34, 12))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 34, 9))

a2 = b2; // ok
>a2 : Symbol(a2, Decl(assignmentCompatWithCallSignatures5.ts, 8, 3))
>b2 : Symbol(b2, Decl(assignmentCompatWithCallSignatures5.ts, 34, 3))

b2 = a2; // ok
>b2 : Symbol(b2, Decl(assignmentCompatWithCallSignatures5.ts, 34, 3))
>a2 : Symbol(a2, Decl(assignmentCompatWithCallSignatures5.ts, 8, 3))

var b3: <T>(x: T) => T; 
>b3 : Symbol(b3, Decl(assignmentCompatWithCallSignatures5.ts, 37, 3))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 37, 9))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 37, 12))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 37, 9))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 37, 9))

a3 = b3; // ok
>a3 : Symbol(a3, Decl(assignmentCompatWithCallSignatures5.ts, 9, 3))
>b3 : Symbol(b3, Decl(assignmentCompatWithCallSignatures5.ts, 37, 3))

b3 = a3; // ok
>b3 : Symbol(b3, Decl(assignmentCompatWithCallSignatures5.ts, 37, 3))
>a3 : Symbol(a3, Decl(assignmentCompatWithCallSignatures5.ts, 9, 3))

var b4: <T, U>(x: T, y: U) => string; 
>b4 : Symbol(b4, Decl(assignmentCompatWithCallSignatures5.ts, 40, 3))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 40, 9))
>U : Symbol(U, Decl(assignmentCompatWithCallSignatures5.ts, 40, 11))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 40, 15))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 40, 9))
>y : Symbol(y, Decl(assignmentCompatWithCallSignatures5.ts, 40, 20))
>U : Symbol(U, Decl(assignmentCompatWithCallSignatures5.ts, 40, 11))

a4 = b4; // ok
>a4 : Symbol(a4, Decl(assignmentCompatWithCallSignatures5.ts, 10, 3))
>b4 : Symbol(b4, Decl(assignmentCompatWithCallSignatures5.ts, 40, 3))

b4 = a4; // ok
>b4 : Symbol(b4, Decl(assignmentCompatWithCallSignatures5.ts, 40, 3))
>a4 : Symbol(a4, Decl(assignmentCompatWithCallSignatures5.ts, 10, 3))

var b5: <T, U>(x: (arg: T) => U) => T; 
>b5 : Symbol(b5, Decl(assignmentCompatWithCallSignatures5.ts, 43, 3))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 43, 9))
>U : Symbol(U, Decl(assignmentCompatWithCallSignatures5.ts, 43, 11))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 43, 15))
>arg : Symbol(arg, Decl(assignmentCompatWithCallSignatures5.ts, 43, 19))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 43, 9))
>U : Symbol(U, Decl(assignmentCompatWithCallSignatures5.ts, 43, 11))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 43, 9))

a5 = b5; // ok
>a5 : Symbol(a5, Decl(assignmentCompatWithCallSignatures5.ts, 11, 3))
>b5 : Symbol(b5, Decl(assignmentCompatWithCallSignatures5.ts, 43, 3))

b5 = a5; // ok
>b5 : Symbol(b5, Decl(assignmentCompatWithCallSignatures5.ts, 43, 3))
>a5 : Symbol(a5, Decl(assignmentCompatWithCallSignatures5.ts, 11, 3))

var b6: <T extends Base, U extends Derived>(x: (arg: T) => U) => T; 
>b6 : Symbol(b6, Decl(assignmentCompatWithCallSignatures5.ts, 46, 3))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 46, 9))
>Base : Symbol(Base, Decl(assignmentCompatWithCallSignatures5.ts, 0, 0))
>U : Symbol(U, Decl(assignmentCompatWithCallSignatures5.ts, 46, 24))
>Derived : Symbol(Derived, Decl(assignmentCompatWithCallSignatures5.ts, 2, 27))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 46, 44))
>arg : Symbol(arg, Decl(assignmentCompatWithCallSignatures5.ts, 46, 48))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 46, 9))
>U : Symbol(U, Decl(assignmentCompatWithCallSignatures5.ts, 46, 24))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 46, 9))

a6 = b6; // ok
>a6 : Symbol(a6, Decl(assignmentCompatWithCallSignatures5.ts, 12, 3))
>b6 : Symbol(b6, Decl(assignmentCompatWithCallSignatures5.ts, 46, 3))

b6 = a6; // ok
>b6 : Symbol(b6, Decl(assignmentCompatWithCallSignatures5.ts, 46, 3))
>a6 : Symbol(a6, Decl(assignmentCompatWithCallSignatures5.ts, 12, 3))

var b11: <T, U>(x: { foo: T }, y: { foo: U; bar: U }) => Base; 
>b11 : Symbol(b11, Decl(assignmentCompatWithCallSignatures5.ts, 49, 3))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 49, 10))
>U : Symbol(U, Decl(assignmentCompatWithCallSignatures5.ts, 49, 12))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 49, 16))
>foo : Symbol(foo, Decl(assignmentCompatWithCallSignatures5.ts, 49, 20))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 49, 10))
>y : Symbol(y, Decl(assignmentCompatWithCallSignatures5.ts, 49, 30))
>foo : Symbol(foo, Decl(assignmentCompatWithCallSignatures5.ts, 49, 35))
>U : Symbol(U, Decl(assignmentCompatWithCallSignatures5.ts, 49, 12))
>bar : Symbol(bar, Decl(assignmentCompatWithCallSignatures5.ts, 49, 43))
>U : Symbol(U, Decl(assignmentCompatWithCallSignatures5.ts, 49, 12))
>Base : Symbol(Base, Decl(assignmentCompatWithCallSignatures5.ts, 0, 0))

a11 = b11; // ok
>a11 : Symbol(a11, Decl(assignmentCompatWithCallSignatures5.ts, 13, 3))
>b11 : Symbol(b11, Decl(assignmentCompatWithCallSignatures5.ts, 49, 3))

b11 = a11; // ok
>b11 : Symbol(b11, Decl(assignmentCompatWithCallSignatures5.ts, 49, 3))
>a11 : Symbol(a11, Decl(assignmentCompatWithCallSignatures5.ts, 13, 3))

var b15: <U, V>(x: { a: U; b: V; }) => U[]; 
>b15 : Symbol(b15, Decl(assignmentCompatWithCallSignatures5.ts, 52, 3))
>U : Symbol(U, Decl(assignmentCompatWithCallSignatures5.ts, 52, 10))
>V : Symbol(V, Decl(assignmentCompatWithCallSignatures5.ts, 52, 12))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 52, 16))
>a : Symbol(a, Decl(assignmentCompatWithCallSignatures5.ts, 52, 20))
>U : Symbol(U, Decl(assignmentCompatWithCallSignatures5.ts, 52, 10))
>b : Symbol(b, Decl(assignmentCompatWithCallSignatures5.ts, 52, 26))
>V : Symbol(V, Decl(assignmentCompatWithCallSignatures5.ts, 52, 12))
>U : Symbol(U, Decl(assignmentCompatWithCallSignatures5.ts, 52, 10))

a15 = b15; // ok, T = U, T = V
>a15 : Symbol(a15, Decl(assignmentCompatWithCallSignatures5.ts, 14, 3))
>b15 : Symbol(b15, Decl(assignmentCompatWithCallSignatures5.ts, 52, 3))

b15 = a15; // ok
>b15 : Symbol(b15, Decl(assignmentCompatWithCallSignatures5.ts, 52, 3))
>a15 : Symbol(a15, Decl(assignmentCompatWithCallSignatures5.ts, 14, 3))

var b16: <T>(x: { a: T; b: T }) => T[]; 
>b16 : Symbol(b16, Decl(assignmentCompatWithCallSignatures5.ts, 55, 3))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 55, 10))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 55, 13))
>a : Symbol(a, Decl(assignmentCompatWithCallSignatures5.ts, 55, 17))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 55, 10))
>b : Symbol(b, Decl(assignmentCompatWithCallSignatures5.ts, 55, 23))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 55, 10))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 55, 10))

a15 = b16; // ok
>a15 : Symbol(a15, Decl(assignmentCompatWithCallSignatures5.ts, 14, 3))
>b16 : Symbol(b16, Decl(assignmentCompatWithCallSignatures5.ts, 55, 3))

b15 = a16; // ok
>b15 : Symbol(b15, Decl(assignmentCompatWithCallSignatures5.ts, 52, 3))
>a16 : Symbol(a16, Decl(assignmentCompatWithCallSignatures5.ts, 15, 3))

var b17: <T>(x: (a: T) => T) => T[]; 
>b17 : Symbol(b17, Decl(assignmentCompatWithCallSignatures5.ts, 58, 3))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 58, 10))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 58, 13))
>a : Symbol(a, Decl(assignmentCompatWithCallSignatures5.ts, 58, 17))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 58, 10))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 58, 10))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 58, 10))

a17 = b17; // ok
>a17 : Symbol(a17, Decl(assignmentCompatWithCallSignatures5.ts, 16, 3))
>b17 : Symbol(b17, Decl(assignmentCompatWithCallSignatures5.ts, 58, 3))

b17 = a17; // ok
>b17 : Symbol(b17, Decl(assignmentCompatWithCallSignatures5.ts, 58, 3))
>a17 : Symbol(a17, Decl(assignmentCompatWithCallSignatures5.ts, 16, 3))

var b18: (x: <T>(a: T) => T) => any[]; 
>b18 : Symbol(b18, Decl(assignmentCompatWithCallSignatures5.ts, 61, 3))
>x : Symbol(x, Decl(assignmentCompatWithCallSignatures5.ts, 61, 10))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 61, 14))
>a : Symbol(a, Decl(assignmentCompatWithCallSignatures5.ts, 61, 17))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 61, 14))
>T : Symbol(T, Decl(assignmentCompatWithCallSignatures5.ts, 61, 14))

a18 = b18; // ok
>a18 : Symbol(a18, Decl(assignmentCompatWithCallSignatures5.ts, 20, 3))
>b18 : Symbol(b18, Decl(assignmentCompatWithCallSignatures5.ts, 61, 3))

b18 = a18; // ok
>b18 : Symbol(b18, Decl(assignmentCompatWithCallSignatures5.ts, 61, 3))
>a18 : Symbol(a18, Decl(assignmentCompatWithCallSignatures5.ts, 20, 3))