Error Messages/43543
Error Message
- Expecting index identifier
Description
A syntax error occur in which the identifier of an was expected, but something else appeared.
This error usually means that you have used a Subscript-Slice Operator without specifying the index, such as X[5]
instead of X[I=5]
or X[@I=5]
. To fix this the error, modify the expression to include the index.
In the event you want to slice over the Implicit index of an array (including slicing an element from a list), you don't have a way to name the index. In that case, X[@=5]
is accepted. But this doesn't work when the dimension corresponds to a real index.
See Also
Comments
Enable comment auto-refresher