aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00013.c
blob: 87a9b5cd25c8041da553476ed5b53e960a14e5bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
int
main()
{
	int x;
	int *p;
	
	x = 0;
	p = &x;
	return p[0];
}