summaryrefslogtreecommitdiff
path: root/support/regression/qct/0039-sizeof.c
blob: 86cbd6faa5ea0c2342590128f638f2acfe2bb33d (plain)
1
2
3
4
5
6
7
8
9
10
int
main()
{
	int x;
	if((sizeof (int) - 4))
		return 1;
	if((sizeof (&x) - 8))
		return 1;
	return 0;
}