Community
Participate
Working Groups
ia int[] = []; Type mismatch: cannot convert from EList<EAny> to EList<Integer>
The problem is because this statement: i int[] = []; goes into the ArrayLiteralTemplate and gets the type of the array, which has no entries, so it is defaulting to Any. I think the only way of solving this is to check for this condition in Reorg code and assign the type to the array, using the assignment LHS as the type.
fixed
Verified