pascalabcnet/TestSuite/static_ext_prop.pas
2018-07-03 17:12:29 +03:00

14 lines
169 B
ObjectPascal

type
t1=class
class v: byte;
class property a: byte read v
write
begin
v := value;
end;
end;
begin
t1.a := 1;
Assert(t1.a=1);
end.