COBCH1852 Operators must specify a RETURNING item

The program declares an operator but does not specify the required RETURNING phrase.

Resolution:

Correct the code; then recompile.

Example:

In the following example, the returning phrase is missing from the operator declaration.

       class-id A.
       operator-id + (o1 as type A, o2 as type A).
       end operator.
       end class.