Error Messages/40256
Error text
In call to function My_sum, there are too many parameters.
Cause
You passed more parameters than was expected by the function.
The following example would trigger this error.
Function parameter declaration for My_sum:
(X, Y: number)
Function call:
My_sum(4, 1, 7)
Remedies
Correct the number of parameters to the function.
See Also
Comments
Enable comment auto-refresher