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 / tbs / tb0564.pp
Size: Mime:
{ %opt=-gttt }
{$mode objfpc}


procedure get(out s: string);
begin
end;

procedure test;
var
  s: string[1];
  a,b: byte;
begin
  a:=1;
  b:=2;
  get(s);
  if (a<>1) or
     (b<>2) then
    halt(1);
end;

begin
  test;
end.