Some incorrect array declarations, followed by list iteration loop over the array (and maybe other attempts to use the array), may cause the compiler to crash:
var a[];
for x in a do print(x); end;
This code wouldn't compile anyway, and the original error is reported, so the workaround is to fix the array declaration.
Some incorrect array declarations, followed by list iteration loop over the array (and maybe other attempts to use the array), may cause the compiler to crash:
This code wouldn't compile anyway, and the original error is reported, so the workaround is to fix the array declaration.