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

program tb0164;

{ Non local goto cannot be handled properly by the compiler,
  and should therefore not be allowed.}

{$GOTO ON}

  procedure foo;

    label 999;

    procedure bar;

    begin
      goto 999
    end;

  begin
    bar;
    999:
  end;

begin
  foo;
end.