Error Messages/40349
Example error text
In the expression A.J, Variable A is not indexed by J
Cause
The syntax A.J
is a way of naming an index, in this case an index of the array A
having the identifier index identifier J
. This syntax is used to refer to local indexes, since local indexes don't exist in the global namespace.
The indicated error occurs when none of the indexes of A
are named J
.
Remedies
Change the expression to use a valid index of the array.
See Also
Comments
Enable comment auto-refresher