mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:18:30 +02:00
21 lines
184 B
ObjectPascal
21 lines
184 B
ObjectPascal
{ %cpu=i386,x86_64 }
|
|
|
|
{$goto on}
|
|
|
|
label l1;
|
|
var
|
|
err : boolean;
|
|
begin
|
|
asm
|
|
jmp l1
|
|
end;
|
|
writeln('oops');
|
|
err:=true;
|
|
l1:
|
|
writeln('hello');
|
|
if err then
|
|
halt(1);
|
|
end.
|
|
|
|
|