pascalabcnet/TestSuite/errors/err0101.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

14 lines
162 B
ObjectPascal

type TClass = class
a : integer := 4;
class function getA : integer;
begin
end;
class property Prop1 : integer read a write a;
end;
var t : TClass;
begin
end.