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