For statement with multiple initializers and update
Closed this issue · 0 comments
JonathanxD commented
Currently only single initializer and update is allowed, but this does not match Java for expression, ex: for (int i = 0, x = 9; x < 100; ++x, ++i)
is valid in Java but is not valid in CodeAPI