//// [genericCallWithOverloadedConstructorTypedArguments2.ts] // Function typed arguments with multiple signatures must be passed an implementation that matches all of them // Inferences are made quadratic-pairwise to and from these overload sets module NonGenericParameter { var a: { new(x: boolean): boolean; new(x: string): string; } function foo4(cb: typeof a) { return cb; } var b: { new (x: T): U } var r3 = foo4(b); // ok } module GenericParameter { function foo5(cb: { new(x: T): string; new(x: number): T }) { return cb; } var a: { new (x: T): T }; var r6 = foo5(a); // ok function foo6(cb: { new(x: T): string; new(x: T, y?: T): string }) { return cb; } var b: { new (x: T, y: T): string }; var r10 = foo6(b); // error function foo7(x:T, cb: { new(x: T): string; new(x: T, y?: T): string }) { return cb; } var r13 = foo7(1, a); // ok var c: { new(x: T): number; new(x: number): T; } var r14 = foo7(1, c); // ok } //// [genericCallWithOverloadedConstructorTypedArguments2.js] // Function typed arguments with multiple signatures must be passed an implementation that matches all of them // Inferences are made quadratic-pairwise to and from these overload sets var NonGenericParameter; (function (NonGenericParameter) { var a; function foo4(cb) { return cb; } var b; var r3 = foo4(b); // ok })(NonGenericParameter || (NonGenericParameter = {})); var GenericParameter; (function (GenericParameter) { function foo5(cb) { return cb; } var a; var r6 = foo5(a); // ok function foo6(cb) { return cb; } var b; var r10 = foo6(b); // error function foo7(x, cb) { return cb; } var r13 = foo7(1, a); // ok var c; var r14 = foo7(1, c); // ok })(GenericParameter || (GenericParameter = {}));