@@ -0,0 +1,10 @@
+var
+ i : longint;
+
+begin
+ i:=1;
+ repeat
+ continue;
+ until i=1;
+end.
@@ -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