TypeScript/tests/cases/compiler/widenToAny1.ts

6 lines
146 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
function foo1<T>(f1: { x: T; y: T }): T {
return undefined;
}
var z1: number = foo1({ x: undefined, y: "def" }); // Best common type is any