Index: src/examples/strings/bug-repro/double_arrow.c
===================================================================
--- src/examples/strings/bug-repro/double_arrow.c	(revision 9ea58cac814e1fbdbd5b756e5e904af42a770b68)
+++ src/examples/strings/bug-repro/double_arrow.c	(revision 9ea58cac814e1fbdbd5b756e5e904af42a770b68)
@@ -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;
+}
