Community
Participate
Working Groups
Due to the recent set of language changes, "x1 int[] = [1, 2, 3];" is no longer valid. It's an assignment of a smallint array to an int array, and they're not compatible types. We need a validation error on the statement. We shouldn't have special cases to allow things for array literals that aren't allowed for array variables of the same type.
I modified reorg code to take care of this, so now it is supported
Verified.