mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 14:29:34 +02:00
21 lines
183 B
ObjectPascal
21 lines
183 B
ObjectPascal
{ %fail }
|
|
{$mode iso}
|
|
unit tisogoto4;
|
|
|
|
interface
|
|
|
|
implementation
|
|
|
|
label
|
|
1;
|
|
|
|
procedure p;
|
|
begin
|
|
goto 1;
|
|
end;
|
|
|
|
begin
|
|
1:
|
|
end.
|
|
|
|
|