Compiler Error C0130
Message: object '<object name>' referenced without parentheses '()'
Possible error cause: A method is referenced without parentheses.
Error correction: Always reference methods by means of parentheses.
Example of the error:
PROGRAM MAIN
VAR
inst : FB;
END_VAR
inst.METH1Message:
C0130: METHOD 'METH1' referenced without parentheses '()'
Error correction:
inst.METH1();