1// Can't assign to type "const varying int32"
2
3int foo() {
4    foreach (i = 0 ... 10) {
5        ++i;
6    }
7}
8