ref: be66d622ccc413b1c67c102e88f6ad27ae925e26 dir: /tests/cc/execute/0168-array.c/
int arr[][3][5] = { { { 0, 0, 3, 5 }, { 1, [3] = 6, 7 }, }, { { 1, 2 }, { [4] = 7, }, }, }; int main(void) { return !(arr[0][1][4] == arr[1][1][4]); }