peter 26 years ago
parent
commit
2b3022ccba
2 changed files with 18 additions and 0 deletions
  1. 17 0
      bugs/bug0202.pp
  2. 1 0
      bugs/readme.txt

+ 17 - 0
bugs/bug0202.pp

@@ -0,0 +1,17 @@
+program silly;
+
+procedure compare(i,j : integer);
+begin
+   case (i>j) of
+     true : begin
+                
+            end;
+     false : begin
+                
+             end;
+   end;
+end;
+
+begin
+end.
+

+ 1 - 0
bugs/readme.txt

@@ -264,3 +264,4 @@ bug0193.pp   overflow checking for 8 and 16 bit operations wrong
 bug0198.pp   calling specifications aren't allowed in class declarations,
              this should be allowed
 bug0200.pp   array of char overloading problem with strings
+bug0202.pp   flag results not supported with case