mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 17:28:05 +02:00
13 lines
170 B
ObjectPascal
13 lines
170 B
ObjectPascal
{ %OPT=-Ooloopunroll }
|
|
var
|
|
arr : array[0..0,0..0] of longint;
|
|
i : longint;
|
|
|
|
begin
|
|
i:=1234;
|
|
for i := 0 to 0 do
|
|
if i<>0 then
|
|
halt(1);
|
|
writeln('ok');
|
|
end.
|