E2275 property attribute 'label' cannot be an empty string (Delphi)
Go Up to Error and Warning Messages (Delphi) Index
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.