aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00039.c
blob: cc6b2e673eca674767b8676debc6b847bb0b921c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
int
main()
{
	void *p;
	int x;
	
	x = 2;
	p = &x;
	
	if(*((int*)p) != 2)
		return 1;
	return 0;
}