Index: src/examples/strings/bug-repro/double_arrow.c
===================================================================
--- src/examples/strings/bug-repro/double_arrow.c	(revision 8243cf980d377d53418335448dbfd63ae96ba812)
+++ src/examples/strings/bug-repro/double_arrow.c	(revision 8243cf980d377d53418335448dbfd63ae96ba812)
@@ -0,0 +1,15 @@
+struct test
+{
+	test* next;
+};
+
+int main(int argc, char* argv[])
+{
+	test t1;
+	test t2;
+	test t3;
+
+	test* pt = &t1;
+	pt->next = &t2;
+	pt->next->next = &t3;
+}
