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

{ in mode Delphi generic types might be overloaded - here: arrays only
  Note: This tests a different code path than in the compiler than tgeneric40! }
program tgeneric40;

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

type
  TTest<T> = array of Integer;

  TTest = array of Integer;

  TTest<T, S> = array of Integer;

begin

end.