PR libfortran/64770 Segfault when trying to open existing file with status="new".
[official-gcc.git] / gcc / testsuite / gcc.dg / lto / 20100720-1_1.c
blob789e88e7d06943bd961c8b68869e7b35ac330c57
1 struct X {
2 int b;
3 };
5 typedef struct list_node *list;
7 struct list_node {
8 list next;
9 struct X *value;
12 list g(void)
14 return 0;