pascalabcnet/TestSuite/errors/err0218.pas
Бондарев Иван 3fbea94169 bug fix #241
2016-07-20 20:33:26 +02:00

10 lines
122 B
ObjectPascal

type
Icell = interface
property State: integer read write;
end;
Cell = class(Icell)
end;
begin
end.