shithub: scc

ref: 994751d39485e086ef623f202fb1b84729fd5d19
dir: /tests/cc/execute/0132-forward.c/

View raw version
struct S *x;
struct S {
	int i;
	struct S *next;
};

int
main(void)
{
	struct S y, *p;
	unsigned n;

	y.i = 0;
	y.next = 0;
	x = &y;
	*x = y;

	for (n = 0, p = &y; p; ++n, p = p->next)
		;
	return n-1;
}