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.0.0 / tests / test / tchlp25.pp
Size: Mime:
{ %NORUN }

{ class helpers can extend a subclass of the parent's extended class }
program tchlp25;

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

type
  TObjectHelper = class helper for TObject
  end;

  TTest = class
  end;

  TTestHelper = class helper(TObjectHelper) for TTest
  end;

begin

end.