pascalabcnet/TestSuite/autoproperty5.pas

9 lines
122 B
ObjectPascal
Raw Permalink Normal View History

2018-12-08 20:36:24 +03:00
type
TClass = class
static auto property X: byte;
end;
begin
TClass.X := 100;
assert(TClass.X = 100);
end.