Files
ispc/tests_errors/foreach-assign.ispc
2011-12-03 09:31:02 -08:00

8 lines
102 B
Plaintext

// Can't assign to type "const int32"
int foo() {
foreach (i = 0 ... 10) {
++i;
}
}