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

{ overloading needs to be enabled explicitly }
program trhlp28;

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

type
  TTest = class
    procedure Test(const aTest: String);
  end;

  TTestHelper = class helper for TTest
    procedure Test;
  end;

procedure TTest.Test(const aTest: String);
begin

end;

procedure TTestHelper.Test;
begin

end;

var
  t: TTest;
begin
  t := TTest.Create;
  t.Test('Foo');
end.