Error Messages/40253
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.
See Also
Comments
Enable comment auto-refresher