https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105555
--- Comment #6 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Another valid testcase:
```
struct C {
__complex int i;
};
struct C p[10];
int *foo1(void) {
return &__real(p->i);
}
```
Reduced from PR 122927.
