COBCH1484 An indexer cannot be STATIC

The program contains an indexer defined as a STATIC member. This is not allowed.

Resolution:

Remove the STATIC specification on the indexer definition; then recompile.

Example:

In the following example, the indexer is incorrectly defined as static.

       class-id a.
       indexer-id string (#index as binary-long) static.
       getter.
           set property-value to "Hello"
       end indexer.
       end class.