File: typeParameterFixingWithContextSensitiveArguments4.js

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 (13 lines) | stat: -rw-r--r-- 490 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
//// [typeParameterFixingWithContextSensitiveArguments4.ts]
function f<T, U>(y: T, y1: U, p: (z: U) => T, p1: (x: T) => U): [T, U] { return [y, p1(y)]; }
interface A { a: A; }
interface B extends A { b; }

var a: A, b: B;

var d = f(a, b, x => x, x => <any>x); // Type [A, B]

//// [typeParameterFixingWithContextSensitiveArguments4.js]
function f(y, y1, p, p1) { return [y, p1(y)]; }
var a, b;
var d = f(a, b, function (x) { return x; }, function (x) { return x; }); // Type [A, B]