Browse Source

+ bug0162 added

florian 27 years ago
parent
commit
784d8a9335
2 changed files with 11 additions and 0 deletions
  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.
              variable is initialized.
 bug0161.pp   internal error when trying to create a set with another set as
 bug0161.pp   internal error when trying to create a set with another set as
              its element (instead of a syntax error)
              its element (instead of a syntax error)
+bug0162.pp   continue in repeat ... until loop doesn't work correct