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

10 lines
363 B
Plaintext

=== tests/cases/compiler/genericCallWithNonGenericArgs1.ts ===
function f<T>(x: any) { }
>f : Symbol(f, Decl(genericCallWithNonGenericArgs1.ts, 0, 0))
>T : Symbol(T, Decl(genericCallWithNonGenericArgs1.ts, 0, 11))
>x : Symbol(x, Decl(genericCallWithNonGenericArgs1.ts, 0, 14))
f<any>(null)
>f : Symbol(f, Decl(genericCallWithNonGenericArgs1.ts, 0, 0))