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

{ a helper may extend specialized generics }
{ Note: this does currently not compile in Delphi }
program thlp26;

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

type
  TFoo<T> = class
    Field: T;
  end;

  TFooInteger = TFoo<Integer>;

  TFooHelper = class helper for TFooInteger
  end;

begin
end.