pascalabcnet/TestSuite/formatter_tests/input/property3.pas
Бондарев Иван c8d9f73bee #938
2018-07-24 22:05:49 +02:00

9 lines
135 B
ObjectPascal

type
t1 = class
x: integer;
property p1: real read x+1 write begin x:=1; end;
property p2:real read x+3;
end;
begin end.