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

11 lines
215 B
Text

=== 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
>null : null