blob: 1aa154fc7394cd2d76cc5576cf80322211ced781 [file] [log] [blame]
typedef struct { int *a; } S;
int *f (void);
static void g (S *x)
{
int *p = x->a;
p[0] = 0;
}
void h (void)
{
S x[1];
x->a = f ();
g (x);
}