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 / thlp1.pp
Size: Mime:
{ %NORUN }

{ tests the inheritance syntax of helpers }
program thlp1;

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

type
  TObjectHelper = class helper for TObject
  end;

  TObjectHelperSub = class helper(TObjectHelper) for TObject
  end;

begin
end.