Semantic Error (SEM1006): The data type '...' is not an array.
A variable that is declared as "single value", i.e., which is no array, is accessed like an array.
Example: MyVar is declared as INT variable. In the code, this variable is accessed in an invalid way like an array.
ST: MyVar[1] := 0;