Difference between revisions of "Error Messages/40329"
AManandhar (talk | contribs) m (Created page with '= Error Message Examples = Error encountered in the parameter declaration for Function Power while checking: (X: number; X: number) Duplicate parameter name, X. = Cause = …') |
|||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
− | + | [[Category: Error messages]] | |
+ | == Error message examples == | ||
+ | |||
+ | <pre style="background:white; border:white; margin-left: 1em; font-style:italic"> | ||
Error encountered in the parameter declaration for Function Power while checking: | Error encountered in the parameter declaration for Function Power while checking: | ||
(X: number; X: number) | (X: number; X: number) | ||
− | |||
Duplicate parameter name, X. | Duplicate parameter name, X. | ||
+ | </pre> | ||
− | = Cause = | + | == Cause == |
− | |||
You have defined more than one parameter to a [[User-Defined Functions|user defined function]] with the same parameter name, which is not allowed. | You have defined more than one parameter to a [[User-Defined Functions|user defined function]] with the same parameter name, which is not allowed. | ||
− | = Remedies = | + | == Remedies == |
− | + | Change the parameter names of the user defined function to be unique. | |
− | Change the parameter names to be unique. | ||
− | + | ==See Also== | |
+ | * [[User-Defined Functions]] | ||
+ | * [[Function Parameter Qualifiers]] | ||
+ | * [[Repeated Parameter Forwarding]] |
Latest revision as of 22:20, 8 March 2016
Error message examples
Error encountered in the parameter declaration for Function Power while checking: (X: number; X: number) Duplicate parameter name, X.
Cause
You have defined more than one parameter to a user defined function with the same parameter name, which is not allowed.
Remedies
Change the parameter names of the user defined function to be unique.
See Also
Comments
Enable comment auto-refresher