mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 21:28:21 +02:00
14 lines
104 B
ObjectPascal
14 lines
104 B
ObjectPascal
{ %fail }
|
|
|
|
{$goto on}
|
|
{$inline on}
|
|
procedure p; inline;
|
|
label x;
|
|
begin
|
|
goto x
|
|
end;
|
|
begin
|
|
p;
|
|
end.
|
|
|