summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/typedef_struct_ptr.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/typedef_struct_ptr.c b/tests/typedef_struct_ptr.c
new file mode 100644
index 0000000..c5cb16d
--- /dev/null
+++ b/tests/typedef_struct_ptr.c
@@ -0,0 +1,7 @@
+typedef struct ll *ll_p;
+
+struct ll {
+ ll_p next;
+};
+
+extern ll_p xyz;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback