TypeScript/tests/baselines/reference/callWithWrongNumberOfTypeArguments.errors.txt
2014-09-11 16:11:08 -07:00

10 lines
405 B
Plaintext

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