9 intFor(2,5,x
,z
) /* 2. Unrecognized identifier: x */
14 intFor(2,c
,x
,i
) /* 3. Yield parameter shadows local declaration: i
15 5. Iter intFor expects arg 2 to be int gets char: c */
18 } ; /* 4. Iter intFor not balanced with end_intFor */
20 intFor(2, 12, x
, i
+3) /* 6, 7. Variable i used before definition
21 Yield parameter is not simple identifier: i + 3 */
24 } end_arrayElements
; /* 8. Iter intFor not balanced with end_intFor: end_arrayElements */
26 arrayElements(1, 10, a
, el
)