shithub: scc

ref: e28bdf554314b3258e03c75683529604efff2e2a
dir: /tests/execute/0020-ptrptr.c/

View raw version
int
main()
{
	int x, *p, **pp;
	
	x = 0;
	p = &x;
	pp = &p;
	return **pp;
}