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

9 lines
300 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/widenToAny1.ts (1 errors) ====
function foo1<T>(f1: { x: T; y: T }): T {
return undefined;
}
var z1: number = foo1({ x: undefined, y: "def" }); // Best common type is any
~~
2014-07-13 01:04:16 +02:00
!!! Type 'string' is not assignable to type 'number'.