//// [typeArgInference2WithError.ts] interface Item { name: string; } declare function foo(x?: T, y?: T): T; var z7 = foo("abc", 5); // Error //// [typeArgInference2WithError.js] var z7 = foo("abc", 5); // Error