Diff of /test/stmt-case.test.expected [000000] .. [1bb915]  Maximize  Restore

Switch to unified view

a b/test/stmt-case.test.expected
1
FUNCTION func:BOOL;
2
(*switch*)WHILE TRUE DO
3
CASE value OF
4
 'h':
5
 ((c:=c+1)-1);
6
 ((c:=c-1)+1);
7
 EXIT;
8
 
9
ELSE:
10
 ((c:=c-1)+1);
11
 EXIT;
12
13
END_CASE
14
15
(*switch*)EXIT;
16
(*switch*)END_WHILE