summaryrefslogtreecommitdiff
path: root/tests/headers/struct_containing_forward_declared_struct.h
diff options
context:
space:
mode:
authorEdward Barnard <eabarnard@gmail.com>2014-12-28 20:31:50 +0100
committerEdward Barnard <eabarnard@gmail.com>2014-12-28 23:25:52 +0100
commit02d34166ff3b1ab192f949e9eb880dd54a476b50 (patch)
tree1a71d956f4bd197fb4563ab01da05a80eee6892a /tests/headers/struct_containing_forward_declared_struct.h
parent077110b6bf57a8f58aaac91eee8903246a84b62f (diff)
Switch to using canonical cursors. Closes #139.
Diffstat (limited to 'tests/headers/struct_containing_forward_declared_struct.h')
-rw-r--r--tests/headers/struct_containing_forward_declared_struct.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/headers/struct_containing_forward_declared_struct.h b/tests/headers/struct_containing_forward_declared_struct.h
new file mode 100644
index 00000000..c68af042
--- /dev/null
+++ b/tests/headers/struct_containing_forward_declared_struct.h
@@ -0,0 +1,7 @@
+struct a {
+ struct b* val_a;
+};
+
+struct b {
+ int val_b;
+}; \ No newline at end of file