shithub: scc

ref: 30334d566f4bdb8cc53c0507c0dad248291b5f4e
dir: /tests/0020-ptrptr.c/

View raw version

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