blob: 99c89ebd7fdd39b98c0c26911fc19fa9a6363836 [file] [log] [blame]
/* { dg-lto-do run } */
struct X {
int a;
};
struct link {
struct list_node *next;
};
struct list_node {
struct link lnk;
struct X *value;
};
void f(struct list_node *lst)
{
lst->lnk.next = 0;
}
int main(void)
{
return 0;
}