Delphi Compiler Error
E2275 property attribute ‘label’ cannot be an empty string
Reason for the Error & Solution
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.