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

18 lines
291 B
Plaintext

=== tests/cases/compiler/redeclarationOfVarWithGenericType.ts ===
var a1: { fn<T>(x: T): T };
>a1 : { fn<T>(x: T): T; }
>fn : <T>(x: T) => T
>T : T
>x : T
>T : T
>T : T
var a1: { fn<T>(x: T): T };
>a1 : { fn<T>(x: T): T; }
>fn : <T>(x: T) => T
>T : T
>x : T
>T : T
>T : T