fpc/tests/test/tabsvr6.pp

21 lines
307 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 true or (a=0) do
break;
except
writeln('ok');
halt(0);
end;
halt(1);
end.