SET PROPERTY は GET PROPERTY をオーバーライドできません。
次の例では、PropG1 に対してこのエラーが戻されます。
		       class-id a public abstract.
       property-id PropG1 string abstract.
       getter.
       end property.
       end class.
       class-id b inherits type a.
       01 PropG1        string public property no get override.
       end class.