aboutsummaryrefslogtreecommitdiffstats
path: root/test/export/issue216.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/export/issue216.c')
-rw-r--r--test/export/issue216.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/export/issue216.c b/test/export/issue216.c
new file mode 100644
index 00000000..796b69b4
--- /dev/null
+++ b/test/export/issue216.c
@@ -0,0 +1,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;}