RAD Studio Athens

E2275

Go Up to Error and Warning Messages (Delphi)

The error is output because the label attribute for g is an empty string.


unit Problem;
interface
  type
    T0 = class
      fย : integer;
      property gย : integer read f write f label ;
    end;

implementation
begin
end.

    

In this solution, the label attribute has been replaced by a non-zero length string.


unit Solve;
interface
  type
    T0 = class
      fย : integer;
      property gย : integer read f write f label 'LabelText';
    end;

implementation
begin
end.