blob: 2924e3f26bea663952a867a06c47259d4f88bd94 [file] [log] [blame]
struct X {
char i;
};
struct W {
struct U *p;
struct X *q;
};
struct U {
struct W a[1];
};
void bar(struct U *ptr)
{
ptr->a[0].p = 0;
}