aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00093.c
blob: 6fb94fb675ac0d4a5434c3023e3a88445e95b7c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
int a[] = {1, 2, 3, 4};

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