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

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

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

type
  TTest<T> = procedure;

  TTest = procedure;

  TTest<T, S> = procedure;

begin

end.