shithub: scc

ref: 1bc054f7b7f8cd2fa8eea85929bf6d06f8bf787f
dir: /tests/execute/0168-array.c/

View raw version
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]);
}