summaryrefslogtreecommitdiff
path: root/support/regression/qct/0046-inits.c
blob: 8949f87b95209183ff82ff52c9cda42acb3f700f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

int x = 5;
long y = 6;
int *p = &x;

int
main()
{
	if (x != 5) 
		return 1;
	if (y != 6)
		return 2;
	if (*p != 5)
		return 3;
	return 0;
}