==== tests/cases/compiler/typeArgInference2WithError.ts (1 errors) ==== interface Item { name: string; } declare function foo(x?: T, y?: T): T; var z7 = foo("abc", 5); // Error ~~~~~ !!! Argument of type 'string' is not assignable to parameter of type 'Item'.