fpc/tests/webtbs/tw38940.pp
2021-05-28 21:23:09 +00:00

23 lines
442 B
ObjectPascal

{ %OPT=-O3 }
procedure Test;
var b:boolean;
i:longint;
begin
// the following loop should be done 2 time, but it hangs up;
b:=true;
i:=0;
repeat
inc(i);
if i>2 then
halt(1);
b:=not b; // first time b is set to false thats why the loop should be done again
// second time b is set to true thats why the loop should be leave,
// but hangs up
until b;
end;
begin
Test;
writeln('ok');
end.