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 / webtbf / tw3644.pp
Size: Mime:
{ %fail }

{ Source provided for Free Pascal Bug Report 3644 }
{ Submitted by "Nicola Lugato" on  2005-02-10 }
{ e-mail:  }

{$mode delphi}

procedure callme(y:array of const);
begin
end;

procedure callme2(x:array of const);
begin
callme([x]);
end;

begin
callme([1,2,'ciao']);
end.