TypeScript/tests/baselines/reference/typeArgInference2WithError.errors.txt
2014-09-11 16:11:08 -07:00

10 lines
349 B
Plaintext

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