Explorar o código

+ bug0162 added

florian %!s(int64=27) %!d(string=hai) anos
pai
achega
784d8a9335
Modificáronse 2 ficheiros con 11 adicións e 0 borrados
  1. 10 0
      bugs/bug0162.pp
  2. 1 0
      bugs/readme.txt

+ 10 - 0
bugs/bug0162.pp

@@ -0,0 +1,10 @@
+var
+   i : longint;
+
+begin
+   i:=1;
+   repeat
+     continue;
+   until i=1;
+end.
+       

+ 1 - 0
bugs/readme.txt

@@ -216,3 +216,4 @@ bug0152.pp   End value of loop variable must be calculated before loop
              variable is initialized.
 bug0161.pp   internal error when trying to create a set with another set as
              its element (instead of a syntax error)
+bug0162.pp   continue in repeat ... until loop doesn't work correct