pascalabcnet/TestSuite/formatter_tests/input/property3.pas

9 lines
135 B
ObjectPascal
Raw Permalink Normal View History

2018-07-24 23:05:49 +03:00
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.