pascalabcnet/TestSuite/intellisense_tests/property1.pas

13 lines
258 B
ObjectPascal
Raw Permalink Normal View History

2018-05-08 21:39:55 +03:00
type
t1=class
private f1:byte;
private f2:word;
2018-07-16 22:06:19 +03:00
public property p1:byte read f1{@var t1.f1: byte;@} write f1;
2018-05-08 21:39:55 +03:00
public property p2:word read f2;
end;
begin
var a := new t1;
writeln(a.p2{@property t1.p2: word; readonly;@});
end.