mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 23:59:35 +02:00
11 lines
87 B
ObjectPascal
11 lines
87 B
ObjectPascal
{$mode objfpc}
|
|
label l;
|
|
|
|
begin
|
|
try
|
|
goto l;
|
|
finally
|
|
end;
|
|
l:
|
|
end.
|