pascalabcnet/TestSuite/errors/err0218.pas

10 lines
122 B
ObjectPascal
Raw Permalink Normal View History

2016-07-20 21:33:26 +03:00
type
Icell = interface
property State: integer read write;
end;
Cell = class(Icell)
end;
begin
end.