blob: 57a042b0ba57404428c55305127a2ef60f8ab1e0 [file] [log] [blame]
/* { dg-do compile } */
typedef struct {
int a;
int b;
int c;
int d;
} e;
e *f;
int g;
void h() {
e *i;
if (g) {
i->c = f[g].b;
i->d = f[g].a;
} else
i->c = i->d = 0;
}