shithub: scc

ref: 71fbf8ad9e06c29514a12e8840e59d3f50e33b4c
dir: /tests/execute/0096-inferredarraysize.c/

View raw version


int a[] = {1, 2, 3, 4};

int
main()
{
	if (sizeof(a) != 4*sizeof(int))
		return 1;
	
	return 0;
}