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…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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


You are not allowed to post comments.