pascalabcnet/TestSuite/formatter_tests/should/property3.pas
Бондарев Иван 136a60fdf3 fix #1218
fix #1219
fix #1220
2018-09-20 21:21:16 +02:00

9 lines
148 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.