mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 12:09:32 +02:00
17 lines
176 B
ObjectPascal
17 lines
176 B
ObjectPascal
{ %opt=-O2 }
|
|
|
|
{ Explicitly disable overflow and range checks }
|
|
{$Q-}
|
|
{$R-}
|
|
|
|
var
|
|
i : longint;
|
|
|
|
begin
|
|
i:=1234;
|
|
i:=i shl 23;
|
|
i:=i shl 23;
|
|
if i<>0 then
|
|
halt(1);
|
|
end.
|