pascalabcnet/TestSuite/errors/err0217.pas

14 lines
141 B
ObjectPascal
Raw Normal View History

2016-07-09 15:27:41 +03:00
type A = class
constructor;
begin
end;
function Clone(): A;
begin
Result := self.Create;
end;
end;
begin
end.