pascalabcnet/TestSuite/errors/err0030.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

10 lines
132 B
ObjectPascal

type TClass = class
FProp : integer;
property Prop : integer read FProp write FProp;
end;
var a : TClass;
begin
Inc(a.Prop);
end.