TypeScript/tests/baselines/reference/genericCallWithNonGenericArgs1.types

11 lines
201 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/genericCallWithNonGenericArgs1.ts ===
function f<T>(x: any) { }
>f : <T>(x: any) => void
>T : T
>x : any
f<any>(null)
>f<any>(null) : void
>f : <T>(x: any) => void