shithub: scc

ref: 0fb36627230e9c8defd681c61e4917a140fcc03f
dir: /tests/cc/execute/0162-array.c/

View raw version
int arr[3] = {[2] = 2, [0] = 0, [1] = 1};

int
main()
{
	if(arr[0] != 0)
		return 1;
	if(arr[1] != 1)
		return 2;
	if(arr[2] != 2)
		return 3;
	return 0;
}