Compiler Error C0206
Message: BIT is not allowed as base type of an array
Possible error cause: An attempt is made to declare a BIT array.
Error correction: Do not declare BIT arrays.
Example of the error:
PROGRAM MAIN
VAR
arr : ARRAY[1..2] OF BIT;
END_VARMessage:
C0206: BIT is not allowed as base type of an array