mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 06:08:22 +02:00
19 lines
206 B
ObjectPascal
19 lines
206 B
ObjectPascal
{ %opt=-O- -O1 }
|
|
var
|
|
l : longint;
|
|
|
|
begin
|
|
l:=1234;
|
|
|
|
if -l-1<>-1235 then
|
|
halt(1);
|
|
|
|
if -(l+1)<>-1235 then
|
|
halt(2);
|
|
|
|
if -(1+l)<>-1235 then
|
|
halt(3);
|
|
|
|
if -1-l<>-1235 then
|
|
halt(4);
|
|
end. |