mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 21:07:54 +02:00
17 lines
200 B
ObjectPascal
17 lines
200 B
ObjectPascal
{ %CPU=i386 }
|
|
{ %OPT=-S2cgi -OG2 -gl -al }
|
|
program bugloop;
|
|
|
|
{$mode objfpc}
|
|
|
|
var
|
|
d: array[0..0] of double;
|
|
i: integer;
|
|
|
|
begin
|
|
for i := low(d) to high(d) do
|
|
d[i] := i;
|
|
writeln('ok');
|
|
end.
|
|
|