mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 11:08:02 +02:00
19 lines
187 B
ObjectPascal
19 lines
187 B
ObjectPascal
{$goto on}
|
|
unit uw11762;
|
|
interface
|
|
procedure p; inline;
|
|
var
|
|
i : longint;
|
|
implementation
|
|
procedure p; inline;
|
|
label x;
|
|
begin
|
|
goto x;
|
|
i:=i+10;
|
|
x:
|
|
i:=i+1;
|
|
end;
|
|
begin
|
|
end.
|
|
|