ref: 1e3dd27b9b1dcd2c8f16a0f51effaade0e12c227
dir: /tests/execute/0132-forward.c/
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)
/* nothing */;
return n;
}