shithub: scc

ref: 37e4ca9b85b68ca0441c18c2f4fbf24c866e38cb
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;
}