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

2 lines
61 B
TypeScript

function f(p: <T>(x: T) => void) { };
f(x => f(y => x = y));