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

{ although records can't have (strict) protected, record helpers can }
program trhlp21;

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

type
  TTest = record

  end;

  TTestHelper = record helper for TTest
  protected
    procedure Test;
  end;

procedure TTestHelper.Test;
begin

end;

begin
end.