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

3 lines
No EOL
193 B
TypeScript

var f10: <T>(x: T, b: () => (a: T) => void, y: T) => T;
f10('', () => a => a.foo, ''); // a is string, fixed by first parameter
var r9 = f10('', () => (a => a.foo), 1); // now a should be any