mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 20:59:42 +02:00
+ Added bug #134
This commit is contained in:
parent
e4328d08e2
commit
51fc557848
31
bugs/bug0134.pp
Normal file
31
bugs/bug0134.pp
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
In this simple examply, the even loop is wrong. When continue; is called,
|
||||
it should go back to the top and check the loop conditions and exit when i =
|
||||
4, but continue skips checking the loop conditions and does i=5 too, then it
|
||||
is odd, doesn't run the continue, and the loop terminates properly.
|
||||
}
|
||||
|
||||
|
||||
procedure demoloop( max:integer );
|
||||
var i : integer;
|
||||
begin
|
||||
i := 1;
|
||||
while (i <= max) do
|
||||
begin
|
||||
if (i mod 2 = 0) then
|
||||
begin
|
||||
writeln('Even ',i,' of ',max);
|
||||
inc(i);
|
||||
continue;
|
||||
end;
|
||||
writeln('Odd ',i,' of ',max);
|
||||
inc(i);
|
||||
end;
|
||||
end;
|
||||
|
||||
begin
|
||||
writeln('Odd loop (continue is *not* last call):');
|
||||
demoloop(3);
|
||||
writeln('Even loop (continue is last call):');
|
||||
demoloop(4);
|
||||
end.
|
@ -180,3 +180,4 @@ bug0130.pp in [..#255] problem
|
||||
bug0131.pp internal error 10 with highdimension arrays
|
||||
bug0132.pp segmentation fault with type loop
|
||||
bug0133.pp object type declaration not 100% compatibile with TP7
|
||||
bug0134.pp 'continue' keyword is buggy.
|
Loading…
Reference in New Issue
Block a user