Diff of /test/stmt-while.test.log [b383b0] .. [853a2a]  Maximize  Restore

Switch to side-by-side view

--- a/test/stmt-for.test.expected
+++ b/test/stmt-while.test.log
@@ -1,9 +1,5 @@
 FUNCTION func:BOOL;
-i := 0;
-
-WHILE i < 5;
- DO
+WHILE x < 10 DO
 x := x / 2;
 
-((i:=i+1)-1);
 END_WHILE