COBCH1839 '<型名>' は抽象クラス '<クラス名>' のプロパティ '<プロパティ名>' の get アクセサーを実装していない

次の例では、COBCH1839 ('type b' は抽象クラス 'type a' のプロパティ 'PropG1' の get アクセサーを実装していない) が戻されます。
       class-id a public abstract.
       property-id PropG1 string abstract.
       getter.
       setter.
       end property.
       end class.

       class-id b inherits type a.
       01 PropG1        string public property with no get override.
       end class.