PR libfortran/64770 Segfault when trying to open existing file with status="new".
[official-gcc.git] / gcc / testsuite / gcc.dg / lto / 20100720-3_1.c
blob3d323813edd00e86198cfb121ffffe31a15764cc
1 struct X {
2 int b;
3 };
5 struct link {
6 struct list_node *next;
7 };
9 struct list_node {
10 struct link lnk;
11 struct X *value;
14 void g(struct list_node *lst)
16 lst->lnk.next = 0;