aboutsummaryrefslogtreecommitdiffstats
path: root/test/export/issue216.c
blob: 796b69b40824ba332576db6182c4b8bf2747253f (plain)
1
2
3
4
5
#include <stddef.h>

struct list {unsigned head; struct list *tail;};
struct list three[] = { {1, three+1}, {2, three+2}, {3, NULL} };
int f(int x) { return x;}