Error Messages/40256

< Error Messages
Revision as of 19:32, 24 March 2016 by Bbecane (talk | contribs)
(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.

See Also

Comments


You are not allowed to post comments.