Message: Too many initializers for array
Possible error cause: Too many values are specified for the size of the array.
Error correction: The number of assigned values must correspond to the size of the array.
Example of the error:
PROGRAM PLC_PRG VAR arr1 : ARRAY [1..5] OF INT := [1,2,3,4,5,6]; END_VAR --> C0075: Unexpected array initialisation
Error correction:
Example: arr1 : ARRAY [1..6] OF INT := [1,2,3,4,5,6];