Error Messages/40253

< Error Messages
Revision as of 19:54, 1 February 2010 by AManandhar (talk | contribs) (Created page with '= Error Text = In call to function My_sum, the second parameter has an unknown name, Z. = Cause = You called a function with a parameter name that was not recognized by the f…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Error Text

In call to function My_sum, the second parameter has an unknown name, Z.

Cause

You called a function with a parameter name that was not recognized by the function. You may have made a typo while specifying the parameter name.

The following example would trigger this error as the parameter name, Z is not recognized.

Function parameter declaration for My_sum: {X, Y: number)

Function call: My_sum(X: 5, Z:9)

Remedies

Correct the specified parameter name to one expected by the function.

Comments


You are not allowed to post comments.