tomitrescak / clara-support

0 stars 0 forks source link

Clara World "for" loop initialize bug #125

Open RogerDavidColeman opened 2 years ago

RogerDavidColeman commented 2 years ago

Screenshot (2)

Unexpected token ',' error reported by Clara World framework for the following code fragment:

int x; for (x = 1; .......)

Workaround is to change the code:

for (int x = 1;....)