pascalabcnet/TestSamples/CompilationSamples/Program90.pas

8 lines
91 B
ObjectPascal
Raw Normal View History

2015-05-14 22:35:07 +03:00
type TClass = class
a : integer;
property PropA : integer read a write a;
end;
begin
end.