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 / webtbs / tw17379.pp
Size: Mime:
{ %norun }

{$mode macpas}
{$warnings off}
program recursivefunctionparam;

function first( function test( theint: integer): boolean): integer;
begin {not implemented} end;

function find: integer;

  function test( theint: integer): boolean;
  begin
    first( test)
  end;

begin
  {not implemented}
end;

begin
end.