Error Messages/40256
< Error Messages
Revision as of 20:06, 1 February 2010 by AManandhar (talk | contribs) (Created page with '= 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…')
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.
Comments
Enable comment auto-refresher