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

{ a helper may contain generic methods }
program thlp29;

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

type
  TTest = class

  end;

  TTestHelper = class helper for TTest
    function Test<T>: T;
  end;

function TTestHelper.Test<T>: T;
begin

end;

begin

end.