TypeScript/tests/cases/compiler/widenToAny1.ts
2014-07-12 17:30:19 -07:00

6 lines
146 B
TypeScript

function foo1<T>(f1: { x: T; y: T }): T {
return undefined;
}
var z1: number = foo1({ x: undefined, y: "def" }); // Best common type is any