summaryrefslogtreecommitdiff
path: root/support/regression/qct/0094-inferredarraysize.c
blob: 31758d8abe40cba673e48acba57d532e3387e1c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12


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

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