mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:38:29 +02:00

+ test which avoids this so we do not miss regressions on for loops with variable boundaries git-svn-id: trunk@26339 -
26 lines
295 B
ObjectPascal
26 lines
295 B
ObjectPascal
{ %OPT=-Oonoconstprop }
|
|
procedure DoTest;
|
|
var
|
|
i, j, cnt: longint;
|
|
begin
|
|
cnt:=0;
|
|
j:=1;
|
|
for i:=0 to j do
|
|
begin
|
|
Inc(cnt);
|
|
Dec(j);
|
|
end;
|
|
|
|
writeln(cnt);
|
|
if cnt <> 2 then
|
|
begin
|
|
writeln('Test failed!');
|
|
Halt(1);
|
|
end;
|
|
writeln('Test OK.');
|
|
end;
|
|
|
|
begin
|
|
dotest;
|
|
end.
|