COBCH1929 Feature only supported when compiling for managed code

When compiling for native code, the code being compiled contains syntax for a feature that is supported only when compiling managed code.

Resolution:

Either remove the offending code or recompile for managed code.

Example:

The following example shows code that produces this error when compiled for native code:

       01 x1 pic x(20).
          move type System.String::Concat("Hello" " everyone") to x1
          display x1