TypeScript/tests/baselines/reference/recursiveGenericSignatureInstantiation.types
2015-04-15 16:44:20 -07:00

14 lines
216 B
Plaintext

=== tests/cases/compiler/recursiveGenericSignatureInstantiation.ts ===
function f6<T>(x: T) {
>f6 : <T>(x: T) => any
>T : T
>x : T
>T : T
return f6(x);
>f6(x) : any
>f6 : <T>(x: T) => any
>x : T
}