COBCH1994 A table initializer expression cannot be a reference parameter

A table initializer expression has been used when passing parameters to a section.

In the following example, this error occurs for M1. You must change the type of parameter being passed.

       method-id main static.
           declare o1 as object = "Hello"
           invoke M1(reference table of byte (1 2 3)) *> This line must change
           display o1
       end method.