信息 :Bitaccess 需要字面或符号整数常量
可能的错误原因 :位存取中没有指定字面量或整数常量。
纠错 :使用文字或整数常量。
错误示例
PROGRAM PLC_PRG VAR i : INT; x : INT; END_VAR i.x := FALSE; --> C0018: 'i.x' is no valid assignment target --> C0050: Bitaccess requires literal or symbolic integer constant
纠错
Example: i := Test(x);