shithub: scc

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

View raw version

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