mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:47:56 +02:00
20 lines
168 B
ObjectPascal
20 lines
168 B
ObjectPascal
{ %fail }
|
|
{$mode iso}
|
|
label 1;
|
|
|
|
procedure p1;
|
|
var
|
|
s : ansistring;
|
|
procedure p2;
|
|
begin
|
|
goto 1;
|
|
end;
|
|
|
|
begin
|
|
s:='asdf'
|
|
end;
|
|
|
|
begin
|
|
1:
|
|
end.
|