mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 16:49:35 +02:00
21 lines
309 B
ObjectPascal
21 lines
309 B
ObjectPascal
{ %opt=-CN }
|
|
|
|
{$mode objfpc}
|
|
{$B+}
|
|
uses
|
|
sysutils;
|
|
var
|
|
{ absolute means volatile, so the expression below cannot be optimized
|
|
and must cause a sig fault }
|
|
a : longint absolute 0;
|
|
begin
|
|
try
|
|
while false and (a=0) do
|
|
break;
|
|
except
|
|
writeln('ok');
|
|
halt(0);
|
|
end;
|
|
halt(1);
|
|
end.
|