fpc/tests/webtbs/tw8883b.pp
florian f393c3ff37 * propagate constants into the header of a for loop
+ test which avoids this so we do not miss regressions on for loops with variable boundaries

git-svn-id: trunk@26339 -
2013-12-31 13:16:09 +00:00

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.