tlang/source/tlang/testing/complex_stack_arrays1.t

9 lines
131 B
Raku

module complex_stack_arrays1;
void function()
{
int[][22222] myArray;
int i = 2;
myArray[2][i] = 1 + myArray[2][i];
}