shithub: scc

ref: e5262129cbf2d51cc576c37d8f78aa40ff1ead5b
dir: /tests/0020-ptrptr.c/

View raw version

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