TypeScript/tests/baselines/reference/typeArgInference2WithError.errors.txt

10 lines
335 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== 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
~~~~~
2014-07-25 04:39:50 +02:00
!!! Argument of type 'string' is not assignable to parameter of type 'Item'.