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 / tisogoto5.pp
Size: Mime:
{$mode iso}
{$inline on}
procedure test;
  label
    1;
  procedure p;
    begin
      goto 1;
      halt(1);
    end;
  begin
    p;
    halt(1);
  1:
  end;


label
  1;

procedure p;inline;
  begin
    goto 1;
    halt(1);
  end;

begin
  test;
  p;
  halt(1);
1:
  writeln('ok');
end.