mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 16:48:29 +02:00
18 lines
129 B
ObjectPascal
18 lines
129 B
ObjectPascal
program bug;
|
|
|
|
{$inline on}
|
|
{$goto on}
|
|
|
|
procedure crasher;inline;
|
|
|
|
label beg;
|
|
|
|
begin
|
|
goto beg;
|
|
beg:
|
|
end;
|
|
|
|
begin
|
|
crasher;
|
|
end.
|