Compiler Error C0075
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 MAIN
VAR
arr1 : ARRAY [1..5] OF INT := [1,2,3,4,5,6];
END_VARMessage:
C0075: Unexpected array initialization
Error correction:
arr1 : ARRAY [1..6] OF INT := [1,2,3,4,5,6];