TypeScript/tests/baselines/reference/callWithWrongNumberOfTypeArguments.errors.txt
2014-07-12 17:30:19 -07:00

10 lines
377 B
Plaintext

==== tests/cases/compiler/callWithWrongNumberOfTypeArguments.ts (2 errors) ====
function f<T, U>() { }
f<number>();
~~~~~~~~~~~
!!! Supplied parameters do not match any signature of call target.
f<number, string>();
f<number, string, number>();
~~~~~~~~~~~~~~~~~~~~~~~~~~~
!!! Supplied parameters do not match any signature of call target.