shithub: scc

ref: ebe3dbb901f3c769622378f067ce41a8b3d7e6e5
dir: /tests/execute/0018-structptr.c/

View raw version
int
main()
{

	struct S { int x; int y; } s;
	struct S *p;

	p = &s;	
	s.x = 1;
	p->y = 2;
	return p->y + p->x - 3; 
}