=== tests/cases/compiler/genericFunctionHasFreshTypeArgs.ts === function f(p: (x: T) => void) { }; >f : (p: (x: T) => void) => void >p : (x: T) => void >T : T >x : T >T : T f(x => f(y => x = y)); >f(x => f(y => x = y)) : void >f : (p: (x: T) => void) => void >x => f(y => x = y) : (x: any) => void >x : any >f(y => x = y) : void >f : (p: (x: T) => void) => void >y => x = y : (y: any) => any >y : any >x = y : any >x : any >y : any