mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-06 15:10:33 +01: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.
|
|
|