Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / tests / test / tchlp27.pp
Size: Mime:
{ %FAIL }

{ a class helper must extend a subclass of the parent class helper }
program tchlp27;

{$ifdef fpc}
  {$mode delphi}
{$endif}

type
  TTest1 = class

  end;

  TTest1Helper = class helper for TTest1
  end;

  TTest2 = class

  end;

  TTest2Helper = class helper(TTest1Helper) for TTest2
  end;

begin
end.