TypeScript/tests/baselines/reference/recursiveGenericSignatureInstantiation.types

14 lines
216 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/recursiveGenericSignatureInstantiation.ts ===
function f6<T>(x: T) {
>f6 : <T>(x: T) => any
>T : T
>x : T
>T : T
2014-08-15 23:33:16 +02:00
return f6(x);
>f6(x) : any
>f6 : <T>(x: T) => any
>x : T
2014-08-15 23:33:16 +02:00
}