pascalabcnet/TestSuite/formatter_tests/should/property3.pas

9 lines
148 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;
2018-09-20 22:21:16 +03:00
begin end.