pascalabcnet/TestSuite/intellisense_tests/property1.pas
Бондарев Иван d71baa8270 fix #810
2018-05-08 20:39:55 +02:00

13 lines
238 B
ObjectPascal

type
t1=class
private f1:byte;
private f2:word;
public property p1:byte read f1 write f1;
public property p2:word read f2;
end;
begin
var a := new t1;
writeln(a.p2{@property t1.p2: word; readonly;@});
end.